Chatwoot/db/migrate/20200213054733_create_webhooks.rb

12 lines
212 B
Ruby
Raw Normal View History

2020-02-14 17:49:17 +00:00
class CreateWebhooks < ActiveRecord::Migration[6.0]
def change
create_table :webhooks do |t|
t.integer :account_id
t.integer :inbox_id
t.string :urls
t.timestamps
end
end
end