gab-social/db/migrate/20201127051070_create_chat_...

10 lines
169 B
Ruby

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