complete database

parent 5383b554
Pipeline #1348 failed with stages
in 0 seconds
class ApplyJob < ApplicationRecord class ApplyJob < ApplicationRecord
belongs_to :user belongs_to :user
belongs_to :jobs belongs_to :job
end end
class City < ApplicationRecord class City < ApplicationRecord
belongs_to :regions belongs_to :region
has_and_belongs_to_many :jobs has_and_belongs_to_many :jobs
has_and_belongs_to_many :companies has_and_belongs_to_many :companies
end end
class FavoriteJob < ApplicationRecord class FavoriteJob < ApplicationRecord
belongs_to :user belongs_to :user
belongs_to :jobs belongs_to :job
end end
class HistoryJob < ApplicationRecord class HistoryJob < ApplicationRecord
belongs_to :user belongs_to :user
belongs_to :jobs belongs_to :job
end end
class Job < ApplicationRecord class Job < ApplicationRecord
belongs_to :companies belongs_to :company
has_many :apply_jobs has_many :apply_jobs
has_many :favorite_jobs has_many :favorite_jobs
has_many :history_jobs has_many :history_jobs
......
...@@ -14,7 +14,7 @@ default: &default ...@@ -14,7 +14,7 @@ default: &default
development: development:
<<: *default <<: *default
username: root username: root
password: password: lalili1005
database: VeNJOB_development database: VeNJOB_development
production: 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