9 lines
157 B
Ruby
9 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
|