2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 01:47:48 +00:00
moebooru/db/migrate/092_create_job_tasks.rb
2024-01-08 19:39:01 +09:00

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