blob: e53f0b53df0bf62172563d335f195351d48366ac (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | class CreateNewImports < ActiveRecord::Migration
  def change
    create_table :imports do |t|
      t.string :status
      t.string :current_step_id
      t.float :current_step_progress
      t.references :workbench, index: true
      t.references :referential, index: true
      t.string :name
      t.timestamps
    end
  end
end
 |