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

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

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


Revision 1.1 - (show annotations) (download)
Wed Sep 7 04:54:20 2005 UTC (4 years, 2 months ago) by jjeff
Branch: MAIN
CVS Tags: HEAD
Initial commit of groupblog.module. Group Blogs are a bit like forum containers for blogs. The group blog administrator can add users to group blogs. These users may then assign their blog posts to this group blog. Group Blogs entries may then be viewed together on a single page.
1 -- MySQL dump 10.9
2 --
3 -- Host: localhost Database: drupalcvs
4 -- ------------------------------------------------------
5 -- Server version 4.0.21 Complete MySQL by Server Logistics
6
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40101 SET NAMES utf8 */;
11 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
12 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
13 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE="NO_AUTO_VALUE_ON_ZERO" */;
14
15 --
16 -- Table structure for table `groupblog_users`
17 --
18
19 CREATE TABLE `groupblog_users` (
20 `uid` int(10) NOT NULL default '0',
21 `tid` int(10) NOT NULL default '0'
22 ) TYPE=MyISAM;
23
24 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
25 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
26 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
27 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
28 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
29 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
30

  ViewVC Help
Powered by ViewVC 1.1.2