aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120515134710_create_imports.rb
blob: 5da398fc9795b03d86e31ded84162727cd4b4281 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateImports < ActiveRecord::Migration
  def change
    create_table :imports do |t|
      t.belongs_to :referential
      t.string :status

      t.timestamps
    end
    add_index :imports, :referential_id
  end
end