Gab-Social/db/migrate/20201127051070_create_chat_conversations.rb

10 lines
169 B
Ruby
Raw Normal View History

class CreateChatConversations < ActiveRecord::Migration[5.2]
def change
create_table :chat_conversations do |t|
t.timestamps null: false
end
end
end