2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class CreateCsvExportLogs < ActiveRecord::Migration[4.2]
|
2014-12-24 14:41:41 +05:30
|
|
|
def change
|
|
|
|
|
create_table :csv_export_logs do |t|
|
|
|
|
|
t.string :export_type, null: false
|
|
|
|
|
t.integer :user_id, null: false
|
2017-08-08 00:48:36 +09:00
|
|
|
t.timestamps null: false
|
2014-12-24 14:41:41 +05:30
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|