20161222204147_create_follow_requests.rb 363 B

1234567891011121314
  1. # frozen_string_literal: true
  2. class CreateFollowRequests < ActiveRecord::Migration[5.0]
  3. def change
  4. create_table :follow_requests 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 :follow_requests, [:account_id, :target_account_id], unique: true
  10. end
  11. end