Guest User

Untitled

a guest
Jul 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class CreateTags < ActiveRecord::Migration
  2. def self.up
  3. create_table :tags do |t|
  4. t.string :name
  5. t.references :post
  6.  
  7. t.timestamps
  8. end
  9. end
  10.  
  11. def self.down
  12. drop_table :tags
  13. end
  14. end
Add Comment
Please, Sign In to add comment