houdini/db/migrate/20200901214156_create_import_requests.rb
2020-09-01 21:32:32 -05:00

11 lines
237 B
Ruby

class CreateImportRequests < ActiveRecord::Migration[6.0]
def change
create_table :import_requests do |t|
t.jsonb :header_matches
t.references :nonprofit
t.string :user_email
t.timestamps
end
end
end