complete database

parent 5383b554
Pipeline #1348 failed with stages
in 0 seconds
class ApplyJob < ApplicationRecord
belongs_to :user
belongs_to :jobs
belongs_to :job
end
class City < ApplicationRecord
belongs_to :regions
belongs_to :region
has_and_belongs_to_many :jobs
has_and_belongs_to_many :companies
end
class FavoriteJob < ApplicationRecord
belongs_to :user
belongs_to :jobs
belongs_to :job
end
class HistoryJob < ApplicationRecord
belongs_to :user
belongs_to :jobs
belongs_to :job
end
class Job < ApplicationRecord
belongs_to :companies
belongs_to :company
has_many :apply_jobs
has_many :favorite_jobs
has_many :history_jobs
......
......@@ -14,7 +14,7 @@ default: &default
development:
<<: *default
username: root
password:
password: lalili1005
database: VeNJOB_development
production:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment