From: Steve Sutton Date: Mon, 15 Feb 2016 22:00:44 +0000 (-0500) Subject: Adding a new table file X-Git-Tag: v1.0.0^2~194 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=127e9c707f0cbd41826b7b8850273f7e5eb0f0a0;p=WP-Plugins%2Fglm-member-db-events.git Adding a new table file --- diff --git a/new-event-tables.md b/new-event-tables.md new file mode 100644 index 0000000..4f8b2ce --- /dev/null +++ b/new-event-tables.md @@ -0,0 +1,65 @@ +#Event Tables + +## Categories +id INT +name TEXT +description TEXT + +## Events +id INT +created DATE +updated DATE +approved DATE +starting DATE +ending DATE +starting_hour TIME +ending_hour TIME +title TEXT +description TEXT +intro TEXT +website TEXT +ticket_url TEXT +cost TEXT +venue TEXT +contact INT +admin_contact INT +all_day BOOLEAN +repeat BOOLEAN +dow INT +dayom INT +weekom INT + +## Event Times +id INT +event INT +starting DATE +ending DATE +starting_hour TIME +ending_hour TIME + +## Category to Events +id INT +category TEXT +event TEXT + +## Contacts +id INT +name TEXT +email TEXT +phone TEXT +organization TEXT + +## Venue +id INT +place TEXT +address TEXT +city TEXT +state INT +zip TEXT +lat FLOAT +lon FLOAT + +## State +id INT +name TEXT +abbr TEXT