discourse/db/migrate/20141223145058_create_csv_export_logs.rb
2017-08-08 00:48:57 +09:00

10 lines
234 B
Ruby

class CreateCsvExportLogs < ActiveRecord::Migration
def change
create_table :csv_export_logs do |t|
t.string :export_type, null: false
t.integer :user_id, null: false
t.timestamps null: false
end
end
end