20170330163835_create_imports.rb 268 B

12345678910111213
  1. # frozen_string_literal: true
  2. class CreateImports < ActiveRecord::Migration[5.0]
  3. def change
  4. create_table :imports do |t|
  5. t.integer :account_id, null: false
  6. t.integer :type, null: false
  7. t.boolean :approved
  8. t.timestamps
  9. end
  10. end
  11. end