aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20161228103628_create_import_resources.rb
blob: ef9c3563fc14d9da0cb1aceae3a0e2b6466017f3 (plain)
1
2
3
4
5
6
7
8
9
10
class CreateImportResources < ActiveRecord::Migration
  def change
    create_table :import_resources do |t|
      t.references :import, index: true
      t.string :status

      t.timestamps
    end
  end
end