summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorSteven Verbeek <dubcanada@gmail.com>2012-03-24 00:36:54 -0300
committerSteven Verbeek <dubcanada@gmail.com>2012-03-24 00:36:54 -0300
commit6c40e89853a8211c3108245cd92063da0eb0a46b (patch)
tree47a244341dced1b534fcfd4ccc9ae17aa5789f4b /db/migrate
parentfafc34b0db23844577e0a99273877c956d087d96 (diff)
parent1c6df8e075abf87c6911be7ca9a691d48b7d4009 (diff)
downloadgitlab-ce-6c40e89853a8211c3108245cd92063da0eb0a46b.tar.gz
merging upstream changes
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20120323221339_add_bio_field_to_user.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20120323221339_add_bio_field_to_user.rb b/db/migrate/20120323221339_add_bio_field_to_user.rb
new file mode 100644
index 00000000000..80a4dec5971
--- /dev/null
+++ b/db/migrate/20120323221339_add_bio_field_to_user.rb
@@ -0,0 +1,5 @@
+class AddBioFieldToUser < ActiveRecord::Migration
+ def change
+ add_column :users, :bio, :string, :null => true
+ end
+end