summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorAleksei Kvitinskii <aleksei.kvitinskii@active.by>2011-10-20 01:34:05 +0300
committerAleksei Kvitinskii <aleksei.kvitinskii@active.by>2011-10-20 01:34:05 +0300
commit59704f481e742710fff32c733047eb84478e505e (patch)
treed837909ea9b6e1387c71de5ef2c2ae568323f28c /db/migrate
parent9ad444f02efbeb30365cdf7f23f9b2f846b45a03 (diff)
downloadgitlab-ce-59704f481e742710fff32c733047eb84478e505e.tar.gz
extended user profile with social fields
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20111019212429_add_social_to_user.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20111019212429_add_social_to_user.rb b/db/migrate/20111019212429_add_social_to_user.rb
new file mode 100644
index 00000000000..b0ffe5366a4
--- /dev/null
+++ b/db/migrate/20111019212429_add_social_to_user.rb
@@ -0,0 +1,7 @@
+class AddSocialToUser < ActiveRecord::Migration
+ def change
+ add_column :users, :skype, :string
+ add_column :users, :linkedin, :string
+ add_column :users, :twitter, :string
+ end
+end