diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-06-10 03:23:28 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-06-13 17:59:11 -0400 |
commit | 2bc4fd2d047c1c4c4637f045ed3a51d414359c2a (patch) | |
tree | 6d35070e6889fad85e508facb1c853552909a77e /db | |
parent | 35339bb11f2c410b91a5e8b9ae1d2fef19cac695 (diff) | |
download | gitlab-ce-2bc4fd2d047c1c4c4637f045ed3a51d414359c2a.tar.gz |
Add `dashboard` attribute to User model
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20150610065936_add_dashboard_to_users.rb | 9 | ||||
-rw-r--r-- | db/schema.rb | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/db/migrate/20150610065936_add_dashboard_to_users.rb b/db/migrate/20150610065936_add_dashboard_to_users.rb new file mode 100644 index 00000000000..2628e450722 --- /dev/null +++ b/db/migrate/20150610065936_add_dashboard_to_users.rb @@ -0,0 +1,9 @@ +class AddDashboardToUsers < ActiveRecord::Migration + def up + add_column :users, :dashboard, :integer, default: 0 + end + + def down + remove_column :users, :dashboard + end +end diff --git a/db/schema.rb b/db/schema.rb index 9a9d4a85e4b..f063a4868b1 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20150609141121) do +ActiveRecord::Schema.define(version: 20150610065936) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -502,6 +502,7 @@ ActiveRecord::Schema.define(version: 20150609141121) do t.boolean "otp_required_for_login" t.text "otp_backup_codes" t.string "public_email", default: "", null: false + t.integer "dashboard", default: 0 end add_index "users", ["admin"], name: "index_users_on_admin", using: :btree |