blob: 5a8693d01f872ed8f92c0a50a28540aa4157cdd6 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | class CreateReferentialSuites < ActiveRecord::Migration
  def change
    create_table :referential_suites do |t|
      t.bigint :new_id, index: true
      t.bigint :current_id, index: true
      t.timestamps null: false
    end
  end
end
 |