Add new upload limit system (fix #4234).

This commit is contained in:
evazion
2020-01-23 18:14:30 -06:00
parent 3d6084338c
commit 18affeb4e9
9 changed files with 196 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddUploadPointsToUsers < ActiveRecord::Migration[6.0]
def change
add_column :users, :upload_points, :integer, null: false, default: 1000
end
end