20161003145426_create_blocks.rb 337 B

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