Guest User

Untitled

a guest
May 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. migration 1, :create_foobars_table do
  2. up do
  3. create_table :foobars do
  4. column :id, Integer, :serial => true
  5. column :name, String, :size => 64
  6. column :created_at, DateTime
  7. end
  8. end
  9.  
  10. down do
  11. drop_table :foobars
  12. end
  13. end
Add Comment
Please, Sign In to add comment