rt4914 / KlinicCon-Backend

2 stars 3 forks source link

Fixes #38 Addition of registration council model #41

Closed vanamraghu closed 2 months ago

vanamraghu commented 2 months ago
  1. registration_council.rb model with name as column
  2. schema.rb updated with newer table details
  3. Migration file for registration council

Resolves #38

Description

  1. Creation of registration council model with migration and schema changes

Type of change

How to test this PR?

  1. Run migration and check whether table is created by running rails c, followed by below command that shows table with column names

irb(main):001> RegistrationCouncil.column_names => ["id", "name", "created_at", "updated_at"]