replaces organization migrations with a new table

This commit is contained in:
kikito
2015-08-13 18:18:49 +02:00
parent a59ef10e44
commit 91804b5f7c
5 changed files with 37 additions and 26 deletions

View File

@@ -0,0 +1,5 @@
class AddPhoneNumberToUsers < ActiveRecord::Migration
def change
add_column :users, :phone_number, :string, limit: 30
end
end