Adding postal code to users

This commit is contained in:
2014-02-08 21:06:07 -07:00
parent 92c3a6d2be
commit 56450cf319
6 changed files with 24 additions and 11 deletions

View File

@@ -0,0 +1,5 @@
class AddPostalCodeToUsers < ActiveRecord::Migration
def change
add_column :users, :postal_code, :string
end
end