2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FIX: create upload record for exported csv files

This commit is contained in:
Arpit Jalan 2018-04-19 17:00:31 +05:30
parent 58a53017c9
commit 91bf10bd12
13 changed files with 99 additions and 87 deletions

View file

@ -0,0 +1,5 @@
class AddUploadIdToUserExports < ActiveRecord::Migration[5.1]
def change
add_column :user_exports, :upload_id, :integer
end
end