52194116b3
- upgraded to rails 6 - fixes various issues
8 lines
157 B
Ruby
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
|