summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-03-07 01:12:09 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-03-07 01:12:09 +0000
commitbb92e0ec1f2c706772f5225fda60307e68849320 (patch)
tree8cf894abe1f4d04b9667cc93a460dadc5336abd3 /contrib
parent9756cec53497027625489845418f75cb07c5e62e (diff)
Bug 5702 - Realtime patch for meetme
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12232 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'contrib')
-rw-r--r--contrib/scripts/meetme.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/scripts/meetme.sql b/contrib/scripts/meetme.sql
new file mode 100644
index 000000000..19c4ed745
--- /dev/null
+++ b/contrib/scripts/meetme.sql
@@ -0,0 +1,12 @@
+--
+-- Table structure for Realtime meetme
+--
+
+CREATE TABLE meetme (
+ confno char(80) DEFAULT '0' NOT NULL,
+ pin char(20) NULL,
+ adminpin char(20) NULL,
+ members integer DEFAULT 0 NOT NULL,
+ PRIMARY KEY (confno)
+);
+