mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
10 lines
239 B
Ruby
10 lines
239 B
Ruby
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
|