discourse/db/migrate/20141223145058_create_csv_e...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
270 B
Ruby
Raw Normal View History

# 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
2017-08-07 11:48:36 -04:00
t.timestamps null: false
end
end
end