diff options
| author | mo khan <mo.khan@gmail.com> | 2020-03-15 12:02:08 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-03-15 12:02:08 -0600 |
| commit | 8c4cdd41b41c30a08b5e9fc1d76100a034ebfd51 (patch) | |
| tree | f8bcbc5a3183d2cb535ca9d16cb874b0735abfd0 /rvh/app/models | |
| parent | 8355efa1dc4fc16cfe2bce3c8d72b7a0b2912f21 (diff) | |
Create patients table
Diffstat (limited to 'rvh/app/models')
| -rw-r--r-- | rvh/app/models/patient.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rvh/app/models/patient.rb b/rvh/app/models/patient.rb new file mode 100644 index 0000000..fd7c3ba --- /dev/null +++ b/rvh/app/models/patient.rb @@ -0,0 +1,3 @@ +class Patient < ApplicationRecord + belongs_to :account +end |
