discourse/db/migrate/20141223145058_create_csv_e...

12 lines
270 B
Ruby

# frozen_string_literal: true
class CreateCsvExportLogs < ActiveRecord::Migration[4.2]
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