Guest User

Untitled

a guest
Apr 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class CreatePosts < ActiveRecord::Migration
  2. def self.up
  3. create_table :posts do |t|
  4. t.string :author
  5. t.string :title
  6. t.string :text
  7. t.timestamps
  8. end
  9. end
  10.  
  11. def self.down
  12. drop_table :posts
  13. end
  14. end
Add Comment
Please, Sign In to add comment