Chatwoot/db/migrate/20200213054733_create_webhooks.rb
2020-02-14 23:19:17 +05:30

11 lines
212 B
Ruby

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