skool-app

curriculum == 

string 

string 

Our School ::

our_schools   rails g model OurSchool branch_name:string description:string 

school_branch:text, 

description:string,


News ::

rails g model News date:date title:text description:string image:string 11

date:date

title :text

description:string

image:string


 Room Table:

   rails g model Room room_incharge:string  no_of_tables:string  no_of_chairs:string    board_present:boolean  lecton_present:boolean capacity_for_visitors:decimal 

room_assigned_for :string   ----- Add it 

 


Seminar Table:

 rails g model Seminar  name:string  topic:string date:datedescription:string  chief_guest:string   venue:string  convener_name:string  

Event Table:

rails g model Event name:string date:date title:text description:string 

Our School Branches Table:

rails g model OurSchool branch_name:string description:string 

News Table:

rails g model News date:date title:text description:string image:string

Lab:

rails g model Lab lab_name:string lab_incharge:string  lab_timing:string  lab_room_assigned:string lab_status:boolean 

Stock

rails g model Stock no_of_tables:string  no_of_chairs:string no_of_rooms:string no_of_teachers:string no_of_students:string no_of_staffs:string  no_of_teaching_staff:string no_of_non_teaching_staff:string no_of_vehicles:string  no_of_labs:string

Department

rails g Department  department_name:string  hod_name:string  no_of_teachers:string  no_of_students:string no_of_class:string no_of_room:string 


School_branch_infromation

dean_school:string 


note: staffs mein jo column add kiye hue hain unhe karo





Comments

Popular posts from this blog

Rails 7 Features :: Comparison with Rails 6 and Rails 5