Guest User

Untitled

a guest
May 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class CreateInvoiceClients < ActiveRecord::Migration
  2. def self.up
  3. create_table :InvoiceClients do |t|
  4. t.string :Name, :LastName, :Address, :Email, :Phone, :City, :State, :Country, :Zip
  5. t.timestamps
  6. end
  7. end
  8.  
  9. def self.down
  10. drop_table :InvoiceClients
  11. end
  12. end
Add Comment
Please, Sign In to add comment