Initial commit

This commit is contained in:
2023-09-24 09:43:06 +00:00
commit 4def3ac97f
75 changed files with 1409 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
class Admission < ApplicationRecord
belongs_to :country
belongs_to :person
end
+3
View File
@@ -0,0 +1,3 @@
class ApplicationRecord < ActiveRecord::Base
primary_abstract_class
end
View File
+2
View File
@@ -0,0 +1,2 @@
class Country < ApplicationRecord
end
+2
View File
@@ -0,0 +1,2 @@
class Person < ApplicationRecord
end