aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20161019090255_create_referential_metadata.rb
blob: d862e2df0191b3d79d0cb86598e950640c8a5184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateReferentialMetadata < ActiveRecord::Migration
  def change
    create_table :referential_metadata do |t|
      t.references :referential, index: true
      t.daterange :periode
      t.integer :line_ids, array: true
      t.index :line_ids, using: :gin
      t.references :referential_source, index: true

      t.timestamps
    end
  end
end