polyglot/db/migrate/20180829122818_create_chat_...

9 lines
140 B
Ruby
Raw Normal View History

2018-08-29 12:44:10 +00:00
class CreateChatRooms < ActiveRecord::Migration[5.2]
def change
create_table :chat_rooms do |t|
t.timestamps
end
end
end