Guest User

Untitled

a guest
Apr 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class AddFieldsToClient < ActiveRecord::Migration
  2. def self.up
  3. create_table(:clients, :force => true) do |t|
  4. t.string :StreetAddr
  5. t.string :City
  6. t.string :State
  7. t.string :Zip
  8. t.string :Language
  9. end
  10. end
  11.  
  12. def self.down
  13. drop_table :clients
  14. end
  15. end
Add Comment
Please, Sign In to add comment