20160223171800_create_favourites.rb 333 B

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