Blame | Last modification | View Log | RSS feed
## Table: coach_bio## +-------+------------------+------+-----+---------+-------+# | Field | Type | Null | Key | Default | Extra |# +-------+------------------+------+-----+---------+-------+# | RCid | int(11) unsigned | NO | PRI | NULL | |# | bio | text | YES | | NULL | |# +-------+------------------+------+-----+---------+-------+CREATE TABLE `coach_bio` (`RCid` int(11) unsigned NOT NULL,`bio` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,PRIMARY KEY (`RCid`),UNIQUE KEY `RCid_UNIQUE` (`RCid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci