20160221003621_create_follows.rb 340 B

1234567891011121314
  1. # frozen_string_literal: true
  2. class CreateFollows < ActiveRecord::Migration[4.2]
  3. def change
  4. create_table :follows do |t|
  5. t.integer :account_id, null: false
  6. t.integer :target_account_id, null: false
  7. t.timestamps null: false
  8. end
  9. add_index :follows, [:account_id, :target_account_id], unique: true
  10. end
  11. end