Chatwoot/db/migrate/20190819010457_create_channels.rb

9 lines
157 B
Ruby
Raw Normal View History

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