polyglot/db/migrate/20180829122818_create_chat_rooms.rb
2018-08-29 13:44:10 +01:00

9 lines
140 B
Ruby

class CreateChatRooms < ActiveRecord::Migration[5.2]
def change
create_table :chat_rooms do |t|
t.timestamps
end
end
end