Changeset 508
- Timestamp:
- 02/22/06 00:25:04 (7 years ago)
- Location:
- install/scripts
- Files:
-
- 2 edited
-
mysql.sql (modified) (2 diffs)
-
upgrades/0.9.3.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
install/scripts/mysql.sql
r498 r508 1 1 # 2 # $Id: mysql.sql,v 1.3 0 2005/01/18 22:18:57anarcat Exp $2 # $Id: mysql.sql,v 1.31 2005/01/19 06:14:16 anarcat Exp $ 3 3 # ---------------------------------------------------------------------- 4 4 # AlternC - Web Hosting System … … 378 378 -- Taken from http://cvs.drupal.org/viewcvs/drupal/drupal/database/database.mysql?rev=1.164&view=auto 379 379 -- 380 380 -- if comment is null, then the variable is internal and will not show 381 -- up in the generic configuration panel 381 382 CREATE TABLE variable ( 382 383 name varchar(48) NOT NULL default '', 383 384 value longtext NOT NULL, 384 PRIMARY KEY (name) 385 ) TYPE=MyISAM; 385 comment mediumtext NULL, 386 PRIMARY KEY (name), 387 KEY name (name) 388 ) TYPE=MyISAM; 389 390 -- hosting_tld: only used, for now, in bureau/admin/adm_*add.php 391 INSERT INTO `variable` (name, value, comment) VALUES ('hosting_tld', 0, 392 'This is a FQDN that designates the main hostname of the service. 393 394 For example, hosting_tld determines in what TLD the "free" user domain 395 is created. If this is set to "example.com", a checkbox will appear in 396 the user creation dialog requesting the creator if he wants to create 397 the domain "username.example.com". 398 399 If this is set to 0 or a "false" string, it will be ignored.'); -
install/scripts/upgrades/0.9.3.sql
r500 r508 8 8 9 9 -- add the new variable table 10 -- 11 -- if comment is null, then the variable is internal and will not show 12 -- up in the generic configuration panel 10 13 CREATE TABLE variable ( 11 14 name varchar(48) NOT NULL default '', 12 15 value longtext NOT NULL, 13 PRIMARY KEY (name) 16 comment mediumtext NULL, 17 PRIMARY KEY (name), 18 KEY name (name) 14 19 ) TYPE=MyISAM; 20 21 -- hosting_tld: only used, for now, in bureau/admin/adm_*add.php 22 INSERT INTO `variable` (name, value, comment) VALUES ('hosting_tld', 0, 23 'This is a FQDN that designates the main hostname of the service. 24 25 For example, hosting_tld determines in what TLD the "free" user domain 26 is created. If this is set to "example.com", a checkbox will appear in 27 the user creation dialog requesting the creator if he wants to create 28 the domain "username.example.com". 29 30 If this is set to 0 or a "false" string, it will be ignored.'); 15 31 16 32 USE mysql;
Note: See TracChangeset
for help on using the changeset viewer.
