Files
old-offlineposaoserver/db/migrate/20211020095206_create_jobs.rb
2021-10-26 12:44:05 +02:00

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