mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
9 lines
157 B
Ruby
9 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
|