2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
class CreateExports < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :exports do |t|
|
|
|
|
t.integer :user_id
|
|
|
|
t.integer :nonprofit_id
|
|
|
|
t.string :status
|
|
|
|
t.string :exception
|
|
|
|
t.datetime :ended
|
|
|
|
t.string :export_type
|
|
|
|
t.string :parameters
|
|
|
|
t.string :url
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :exports, :user_id
|
|
|
|
add_index :exports, :nonprofit_id
|
|
|
|
end
|
|
|
|
end
|