/[drupal]/contributions/modules/na_arbitrator/forum_access.mysql
ViewVC logotype

Contents of /contributions/modules/na_arbitrator/forum_access.mysql

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


Revision 1.2 - (show annotations) (download)
Thu Mar 23 19:25:57 2006 UTC (3 years, 8 months ago) by merlinofchaos
Branch: MAIN
CVS Tags: DRUPAL-4-7--1-0, HEAD
Branch point for: DRUPAL-4-7
Changes since 1.1: +22 -11 lines
new demo module for workflow
1 <?php
2 // $Id$
3
4 function forum_access_install() {
5 db_query("create table if not exists forum_access (
6 tid int(10) NOT NULL default 0,
7 rid int(10) NOT NULL default 0,
8 grant_view tinyint(1) unsigned NOT NULL default '0',
9 grant_update tinyint(1) unsigned NOT NULL default '0',
10 grant_delete tinyint(1) unsigned NOT NULL default '0',
11 grant_create tinyint(1) unsigned NOT NULL default '0',
12 KEY tid (tid),
13 KEY rid (rid)
14 );");
15
16 db_query("create table if not exists forum_moderator (
17 tid int(10) NOT NULL default 0,
18 uid int(10) NOT NULL default 0,
19 key uid (uid),
20 key tid (tid)
21 );");
22 drupal_set_message("forum_access database tables created.");
23 }

  ViewVC Help
Powered by ViewVC 1.1.2