User:Chughakshay16/registrationstable
The registrations table stores all the transactions made by an account holder.One account holder can make more than one registration for a particular conference.
Fields
editreg_id
editPrimary key for the table.
reg_account_id
editReferences the account_id in the accounts table.
reg_type
editType of registration for the conference.(for eg . a student type registration)
reg_dietary_rest
editDietary restrictions specified by the account holder while making this registration.
reg_other_diet_opts
editOther dietary options.
reg_other_opts
editExtra information.
reg_badge_info
editBadge information type( only first name on the badge, or just the nickname or the mediawiki username)
Schema summary
editDESCRIBE registrations;:
+-----------------------+---------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-----------------------+---------------------+------+-----+---------+----------------+ | reg_id | int(8) unsigned | NO | PRI | NULL | auto_increment | | reg_account_id | int(11) | NO | MUL | NULL | | | reg_type | varchar(10) | NO | | NULL | | | reg_ dietary_rest | tinyblob | NO | | NULL | | | reg_other_diet_opts | tinyblob | NO | | NULL | | | reg_other_opts | tinyblob | NO | | NULL | | | reg_badge_info | tinyint(1) | NO | | 1 | | +-----------------------+---------------------+------+-----+---------+----------------+