9 lines
140 B
Ruby
9 lines
140 B
Ruby
|
class CreateChatRooms < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :chat_rooms do |t|
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|