Guest User

Untitled

a guest
Jun 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class CreateCompras < ActiveRecord::Migration
  2. def self.up
  3. create_table :compras do |t|
  4. t.integer :usuario_id, :null => false
  5. t.datetime :fecha
  6. t.decimal :total, :precision => 12, :scale => 2
  7.  
  8. t.timestamps
  9. end
  10. end
  11.  
  12. def self.down
  13. drop_table :compras
  14. end
  15. end
Add Comment
Please, Sign In to add comment