diff options
Diffstat (limited to 'db/migrate/20170330163835_create_imports.rb')
-rw-r--r-- | db/migrate/20170330163835_create_imports.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20170330163835_create_imports.rb b/db/migrate/20170330163835_create_imports.rb new file mode 100644 index 000000000..d6f74823d --- /dev/null +++ b/db/migrate/20170330163835_create_imports.rb @@ -0,0 +1,11 @@ +class CreateImports < ActiveRecord::Migration[5.0] + def change + create_table :imports do |t| + t.integer :account_id, null: false + t.integer :type, null: false + t.boolean :approved + + t.timestamps + end + end +end |