Feature2#2
Open
Smokashi23 wants to merge 2 commits into
Open
Conversation
shubhh139
suggested changes
Mar 2, 2024
| @@ -0,0 +1,3 @@ | |||
| class Appt < ApplicationRecord | |||
There was a problem hiding this comment.
@Smokashi23 Use proper model name
Suggested change
| class Appt < ApplicationRecord | |
| class Appointment < ApplicationRecord |
| @@ -0,0 +1,4 @@ | |||
| class Role < ApplicationRecord | |||
| has_many :users | |||
| validates :role, inclusion: { in: %w(doctor patient), message: "should be 'doctor' or 'patient'" | |||
There was a problem hiding this comment.
message should be displayed through I18n.t
| adapter: postgresql | ||
| pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> | ||
| timeout: 5000 | ||
| username: postgres |
There was a problem hiding this comment.
Do not push username password changes in database.yml
There was a problem hiding this comment.
@Smokashi23 either credentials.yml.enc file or .env file
| class CreateRoles < ActiveRecord::Migration[7.1] | ||
| def change | ||
| create_table :roles do |t| | ||
| t.string :role_name |
There was a problem hiding this comment.
Suggested change
| t.string :role_name | |
| t.string :name |
Inside Role table, name attribute will itself be self-explanatory
| create_table :appts do |t| | ||
| t.references :user, foreign_key: true, null:false | ||
| t.references :slot, foreign_key: true, null:false | ||
|
|
|
|
||
| class SlotTest < ActiveSupport::TestCase | ||
| # test "the truth" do | ||
| # assert true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.