/[drupal]/contributions/sandbox/jjeff/favorites/favorites.mysql
ViewVC logotype

Contents of /contributions/sandbox/jjeff/favorites/favorites.mysql

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


Revision 1.1 - (show annotations) (download)
Mon Aug 8 01:36:35 2005 UTC (4 years, 3 months ago) by jjeff
Branch: MAIN
CVS Tags: HEAD
nips, tucks, a database file
1 -- phpMyAdmin SQL Dump
2 -- version 2.6.2-pl1
3 -- http://www.phpmyadmin.net
4 --
5 -- Host: localhost
6 -- Generation Time: Aug 07, 2005 at 06:34 PM
7 -- Server version: 4.0.23
8 -- PHP Version: 4.3.11
9 --
10 -- Database: `fearless`
11 --
12
13 -- --------------------------------------------------------
14
15 --
16 -- Table structure for table `favorites_locations`
17 --
18
19 CREATE TABLE `favorites_locations` (
20 `fid` int(10) NOT NULL default '0',
21 `name` varchar(100) NOT NULL default '',
22 `description` text NOT NULL,
23 `link` varchar(100) NOT NULL default '',
24 `def` int(1) NOT NULL default '0',
25 `weight` int(2) NOT NULL default '0'
26 ) TYPE=MyISAM;
27
28 -- --------------------------------------------------------
29
30 --
31 -- Table structure for table `favorites_user`
32 --
33
34 CREATE TABLE `favorites_user` (
35 `uid` int(12) NOT NULL default '0',
36 `fid` int(10) NOT NULL default '0',
37 `status` int(1) NOT NULL default '0',
38 KEY `uid` (`uid`)
39 ) TYPE=MyISAM;
40

  ViewVC Help
Powered by ViewVC 1.1.2