/[drupal]/contributions/modules/eventfinder/eventfinder.mysql
ViewVC logotype

Contents of /contributions/modules/eventfinder/eventfinder.mysql

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download)
Fri Jun 3 22:42:18 2005 UTC (4 years, 5 months ago) by techsoldaten
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-4-6
Changes since 1.1: +6 -84 lines
Updated table definitions to support older versions of MySQL
1 # phpMyAdmin SQL Dump
2 # version 2.5.4
3 # http://www.phpmyadmin.net
4 #
5 # Host: localhost
6 # Generation Time: Apr 28, 2005 at 11:02 AM
7 # Server version: 4.1.11
8 # PHP Version: 4.3.10
9 #
10 # Database : `new_events_alt`
11 #
12
13 # --------------------------------------------------------
14
15 #
16 # Table structure for table `ef_details`
17 #
18
19 CREATE TABLE `ef_details` (
20 `nid` int(11) NOT NULL default '0',
21 `enable_reg` tinyint(4) NOT NULL default '1',
22 `max_reg` int(11) NOT NULL default '0'
23 );
24
25 # --------------------------------------------------------
26
27 #
28 # Table structure for table `ef_host`
29 #
30
31 CREATE TABLE `ef_host` (
32 `nid` int(11) NOT NULL default '0',
33 `uid` int(11) NOT NULL default '0',
34 `created` int(11) NOT NULL default '0',
35 PRIMARY KEY (`nid`,`uid`),
36 KEY `nid` (`nid`),
37 KEY `uid` (`uid`)
38 );
39
40 # --------------------------------------------------------
41
42 #
43 # Table structure for table `ef_ref_mma`
44 #
45
46 CREATE TABLE `ef_ref_mma` (
47 `area_id` int(11) NOT NULL auto_increment,
48 `area_name` varchar(150) default NULL,
49 `zips` text,
50 PRIMARY KEY (`area_id`)
51 );
52
53
54 # --------------------------------------------------------
55
56 #
57 # Table structure for table `ef_register`
58 #
59
60 CREATE TABLE `ef_register` (
61 `nid` int(11) NOT NULL default '0',
62 `uid` int(11) NOT NULL default '0',
63 `created` int(11) NOT NULL default '0',
64 PRIMARY KEY (`nid`,`uid`),
65 KEY `nid` (`nid`),
66 KEY `uid` (`uid`)
67 );
68
69 # --------------------------------------------------------
70
71 #
72 # Table structure for table `ef_saved_searches`
73 #
74
75 CREATE TABLE `ef_saved_searches` (
76 `sid` int(11) NOT NULL auto_increment,
77 `uid` int(11) NOT NULL default '0',
78 `title` varchar(60) NOT NULL default '',
79 `ss_sql` text NOT NULL,
80 `ss_crit` text NOT NULL,
81 `created` int(11) NOT NULL default '0',
82 `last_run` int(11) NOT NULL default '0',
83 `official` int(11) NOT NULL default '0',
84 UNIQUE KEY `sid` (`sid`)
85 );
86
87 # --------------------------------------------------------
88
89 #
90 # Table structure for table `ef_ss_node`
91 #
92
93 CREATE TABLE `ef_ss_node` (
94 `sid` int(11) NOT NULL default '0',
95 `nid` int(11) NOT NULL default '0',
96 `begin` int(11) NOT NULL default '0'
97 );
98

  ViewVC Help
Powered by ViewVC 1.1.2