Guest User

Untitled

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