blob: d82f30bb195541dd233bb43838db22081949c3ee (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | class CreateReferentialClonings < ActiveRecord::Migration
  def change
    create_table :referential_clonings do |t|
      t.string :status
      t.datetime :started_at
      t.datetime :ended_at
      t.references :source_referential, index: true
      t.references :target_referential, index: true
      t.timestamps
    end
  end
end
 |