mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
16 lines
369 B
Ruby
16 lines
369 B
Ruby
class CreateJobTasks < ActiveRecord::Migration[5.1]
|
|
def self.up
|
|
create_table :job_tasks do |t|
|
|
t.column :task_type, :string, null: false
|
|
t.column :data_as_json, :string, null: false
|
|
t.column :status, :string, null: false
|
|
t.column :status_message, :text
|
|
t.timestamps
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :job_tasks
|
|
end
|
|
end
|