11 lines
175 B
Ruby
11 lines
175 B
Ruby
class CreateJobs < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :jobs do |t|
|
|
t.json :params
|
|
t.string :job_type
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|