mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
e24bfbde1a
in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding admin status to users
6 lines
127 B
Ruby
6 lines
127 B
Ruby
class AddAdminToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :admin, :boolean, default: false
|
|
end
|
|
end
|