2017-08-31 00:06:56 -04:00
|
|
|
class CreateCsvExportLogs < ActiveRecord::Migration[4.2]
|
2014-12-24 04:11:41 -05:00
|
|
|
def change
|
|
|
|
create_table :csv_export_logs do |t|
|
|
|
|
t.string :export_type, null: false
|
|
|
|
t.integer :user_id, null: false
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2014-12-24 04:11:41 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|