diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-03-01 21:23:50 +0200 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-03-01 21:23:50 +0200 |
| commit | 00028702fc516f799296d10a1d0da960e93a0381 (patch) | |
| tree | 21c56e5f03a579bca3345825949b9a1a5cdc27ae /db/migrate | |
| parent | ed75afbb1014920f811a33524ba73cf1a7d78dc9 (diff) | |
| download | gitlab-ce-00028702fc516f799296d10a1d0da960e93a0381.tar.gz | |
design tab improved. Themes added
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20120301185805_add_theme_to_user.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20120301185805_add_theme_to_user.rb b/db/migrate/20120301185805_add_theme_to_user.rb new file mode 100644 index 00000000000..7c2e55692b0 --- /dev/null +++ b/db/migrate/20120301185805_add_theme_to_user.rb @@ -0,0 +1,6 @@ +class AddThemeToUser < ActiveRecord::Migration + def change + add_column :users, :theme_id, :integer, :null => false, :default => 1 + + end +end |
