Changeset 498


Ignore:
Timestamp:
02/22/06 00:24:13 (7 years ago)
Author:
anarcat
Message:

[project @ alternc: changeset 2005-01-18 22:18:57 by anarcat]
add persistent variables storage db structure

Original author: anarcat
Date: 2005-01-18 22:18:57

Location:
install/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • install/scripts/mysql.sql

    r485 r498  
    11# 
    2 # $Id: mysql.sql,v 1.29 2005/01/13 18:17:00 anarcat Exp $ 
     2# $Id: mysql.sql,v 1.30 2005/01/18 22:18:57 anarcat Exp $ 
    33# ---------------------------------------------------------------------- 
    44# AlternC - Web Hosting System 
     
    373373INSERT IGNORE INTO tld VALUES ('asso.fr', 4); 
    374374 
     375-- 
     376-- Table structure for table 'variable' 
     377-- 
     378-- Taken from http://cvs.drupal.org/viewcvs/drupal/drupal/database/database.mysql?rev=1.164&view=auto 
     379-- 
     380 
     381CREATE TABLE variable ( 
     382  name varchar(48) NOT NULL default '', 
     383  value longtext NOT NULL, 
     384  PRIMARY KEY  (name) 
     385) TYPE=MyISAM; 
  • install/scripts/upgrades/0.9.3.sql

    r485 r498  
    22INSERT IGNORE INTO tld VALUES ('it', 1); 
    33INSERT IGNORE INTO tld VALUES ('ws', 1); 
     4 
     5-- add the new variable table 
     6CREATE TABLE variable ( 
     7  name varchar(48) NOT NULL default '', 
     8  value longtext NOT NULL, 
     9  PRIMARY KEY  (name) 
     10) TYPE=MyISAM; 
    411 
    512USE mysql; 
Note: See TracChangeset for help on using the changeset viewer.