diff options
author | Steven Verbeek <dubcanada@gmail.com> | 2012-03-24 00:36:54 -0300 |
---|---|---|
committer | Steven Verbeek <dubcanada@gmail.com> | 2012-03-24 00:36:54 -0300 |
commit | 6c40e89853a8211c3108245cd92063da0eb0a46b (patch) | |
tree | 47a244341dced1b534fcfd4ccc9ae17aa5789f4b /db/migrate | |
parent | fafc34b0db23844577e0a99273877c956d087d96 (diff) | |
parent | 1c6df8e075abf87c6911be7ca9a691d48b7d4009 (diff) | |
download | gitlab-ce-6c40e89853a8211c3108245cd92063da0eb0a46b.tar.gz |
merging upstream changes
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20120323221339_add_bio_field_to_user.rb | 5 |
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 |