projects
/
WP-Plugins
/
glm-member-db-events.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ddf82b
)
Adding a new table file
author
Steve Sutton
<steve@gaslightmedia.com>
Mon, 15 Feb 2016 22:00:44 +0000
(17:00 -0500)
committer
Steve Sutton
<steve@gaslightmedia.com>
Mon, 15 Feb 2016 22:00:44 +0000
(17:00 -0500)
new-event-tables.md
[new file with mode: 0644]
patch
|
blob
diff --git a/new-event-tables.md
b/new-event-tables.md
new file mode 100644
(file)
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