Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-06-10 10:23:28 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-06-14 00:59:11 +0300
commit2bc4fd2d047c1c4c4637f045ed3a51d414359c2a (patch)
tree6d35070e6889fad85e508facb1c853552909a77e /db/migrate
parent35339bb11f2c410b91a5e8b9ae1d2fef19cac695 (diff)
Add `dashboard` attribute to User model
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20150610065936_add_dashboard_to_users.rb9
1 files changed, 9 insertions, 0 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