From e24bfbde1acbef73cd3c58753a572da2bcb59200 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 25 Mar 2016 14:12:24 +0100 Subject: Fixing FanOutOnWriteService, fixing Sidekiq not having enough DB connections in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding admin status to users --- db/migrate/20160325130944_add_admin_to_users.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20160325130944_add_admin_to_users.rb (limited to 'db/migrate') diff --git a/db/migrate/20160325130944_add_admin_to_users.rb b/db/migrate/20160325130944_add_admin_to_users.rb new file mode 100644 index 000000000..e386d33dd --- /dev/null +++ b/db/migrate/20160325130944_add_admin_to_users.rb @@ -0,0 +1,5 @@ +class AddAdminToUsers < ActiveRecord::Migration + def change + add_column :users, :admin, :boolean, default: false + end +end -- cgit