Chatwoot/db/migrate/20190819010457_create_channels.rb
Sojan Jose 52194116b3 Upgrade to rails 6 💎 (#11)
- upgraded to rails 6
- fixes various issues
2019-08-19 13:49:57 +05:30

8 lines
157 B
Ruby

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