Guest User

Untitled

a guest
Jan 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class CreatePatAuthsTable < ActiveRecord::Migration
  2. def self.up
  3. create_table :patient_authorizations do |t|
  4. t.integer :patient_id
  5. t.from_date :date
  6. t.to_date :date
  7. t.integer :initial_number_visits
  8. end
  9. end
  10.  
  11. def self.down
  12. end
  13. end
Add Comment
Please, Sign In to add comment