12 lines
237 B
Ruby
12 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
|