parent
b17b2f25ac
commit
a49d43d112
29 changed files with 437 additions and 103 deletions
9
db/migrate/20190103124649_create_scheduled_statuses.rb
Normal file
9
db/migrate/20190103124649_create_scheduled_statuses.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
class CreateScheduledStatuses < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :scheduled_statuses do |t|
|
||||
t.belongs_to :account, foreign_key: { on_delete: :cascade }
|
||||
t.datetime :scheduled_at, index: true
|
||||
t.jsonb :params
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue