mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
10 lines
222 B
Ruby
10 lines
222 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
|
|
end
|
|
end
|
|
end
|