diff options
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrate/20121123104937_add_username_to_user.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20121123104937_add_username_to_user.rb b/db/migrate/20121123104937_add_username_to_user.rb new file mode 100644 index 00000000000..04232a119d9 --- /dev/null +++ b/db/migrate/20121123104937_add_username_to_user.rb @@ -0,0 +1,5 @@ +class AddUsernameToUser < ActiveRecord::Migration + def change + add_column :users, :username, :string, null: true + end +end |
