houdini/db/migrate/20210209002832_create_object_event_hook_configs.rb

14 lines
377 B
Ruby
Raw Normal View History

2021-02-09 01:37:47 +00:00
class CreateObjectEventHookConfigs < ActiveRecord::Migration[6.1]
def change
create_table :object_event_hook_configs do |t|
t.string :webhook_service, null: false
t.jsonb :configuration, null: false
t.text :object_event_types, null: false
t.references :nonprofit, index: true, foreign_key: true, null: false
t.timestamps
end
end
end