Files
old-offlineposaoserver/db/migrate/20211020095206_create_jobs.rb

11 lines
175 B
Ruby
Raw Normal View History

2021-10-20 12:17:31 +02:00
class CreateJobs < ActiveRecord::Migration[6.1]
def change
create_table :jobs do |t|
t.json :params
2021-10-26 12:44:05 +02:00
t.string :job_type
2021-10-20 12:17:31 +02:00
t.timestamps
end
end
end