summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorPeter Göbel <peter.goebel@debd.de>2015-10-05 18:09:05 +0200
committerPeter Göbel <peter.goebel@debd.de>2015-10-05 18:09:05 +0200
commit291e1fa93063a62e7a0f054135dc5bcebcdd0056 (patch)
tree36ec985e332b9a812b0e9eba7686bb412420f0b5 /db
parente2c5d08e7e4482bd13b8e2e4f77db73dc757d6a7 (diff)
downloadgitlab-ce-291e1fa93063a62e7a0f054135dc5bcebcdd0056.tar.gz
improved code style and layout option naming
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20151005150751_add_layout_option_for_users.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20151005150751_add_layout_option_for_users.rb b/db/migrate/20151005150751_add_layout_option_for_users.rb
index 5ead0c04d5a..ead9b1f8977 100644
--- a/db/migrate/20151005150751_add_layout_option_for_users.rb
+++ b/db/migrate/20151005150751_add_layout_option_for_users.rb
@@ -1,5 +1,5 @@
class AddLayoutOptionForUsers < ActiveRecord::Migration
def change
- add_column :users, :layout, :integer, :default => 0
+ add_column :users, :layout, :integer, default: 0
end
end \ No newline at end of file