_gwm_lists - GolfWithMe/Master GitHub Wiki
Description
This table holds the list of tables that hold list information for selecting from drop downs, statuses, etc.
Field Descriptions
uid
The unique record ID
Name
This is the name / description of the list
Table Layout
+-------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+----------------+
| uid | int(11) | NO | PRI | NULL | auto_increment |
| Name | varchar(50) | YES | | NULL | |
+-------+-------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)
Creation Script
create table _gwm_lists (uid int auto_increment, Name varchar(50), primary key(uid));