Chatwoot/db/migrate/20190819010457_create_channels.rb
2019-11-27 12:42:00 +05:30

8 lines
157 B
Ruby

class CreateChannels < ActiveRecord::Migration[6.0]
def change
create_table :channels do |t|
t.string :name
t.timestamps
end
end
end