diff options
Diffstat (limited to 'db/migrate/20111012142952_add_state_to_phone.rb')
-rw-r--r-- | db/migrate/20111012142952_add_state_to_phone.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20111012142952_add_state_to_phone.rb b/db/migrate/20111012142952_add_state_to_phone.rb new file mode 100644 index 0000000..c5601d9 --- /dev/null +++ b/db/migrate/20111012142952_add_state_to_phone.rb @@ -0,0 +1,5 @@ +class AddStateToPhone < ActiveRecord::Migration + def change + add_column :phones, :state, :string + end +end |