12 lines
199 B
Ruby
12 lines
199 B
Ruby
class CreateJobs < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :jobs do |t|
|
|
t.primary_key :job_id
|
|
t.json :params
|
|
t.string :type
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|