negos_app/db/migrate/20170605133047_create_conversations.rb
2017-06-06 16:15:40 +02:00

12 lines
248 B
Ruby

class CreateConversations < ActiveRecord::Migration
def change
create_table :conversations do |t|
t.boolean :oneone
t.integer :first_customer_id
t.string :second_customer_id
t.timestamps null: false
end
end
end