Chatwoot/db/migrate/20161022060602_create_inboxes.rb

11 lines
212 B
Ruby
Raw Normal View History

class CreateInboxes < ActiveRecord::Migration[5.0]
def change
create_table :inboxes do |t|
t.integer :channel_id
t.integer :account_id
t.string :name
t.timestamps
end
end
end