Guest User

Untitled

a guest
Apr 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class CreateJobs < ActiveRecord::Migration
  2. def self.up
  3. create_table :jobs do |t|
  4. t.text :description
  5. t.string :price
  6. t.timestamps
  7. t.integer :client_id
  8. end
  9. end
  10.  
  11. def self.down
  12. drop_table :jobs
  13. end
  14. end
Add Comment
Please, Sign In to add comment