Da monster-commit of blocks version 2!

Code based on the work of Daryl Hawes for the blog module. Thanks, Daryl!

Please test the hell out of it as it's sure to have issues that need to be
ironed out.
This commit is contained in:
defacer
2004-10-19 21:04:28 +00:00
parent 2defdcd7d5
commit 9b4b78fd6a
38 changed files with 1222 additions and 974 deletions
+14 -1
View File
@@ -9,6 +9,19 @@ CREATE TABLE prefix_blocks (
version INT8 NOT NULL default '0',
cron INT8 NOT NULL default '0',
lastcron INT8 NOT NULL default '0',
visible int NOT NULL default '1'
visible int NOT NULL default '1',
multiple int NOT NULL default '1'
) ;
CREATE TABLE prefix_block_instance (
id SERIAL8 PRIMARY KEY,
blockid INT8 not null default '0',
pageid INT8 not null default '0',
pagetype enum('course') not null,
position enum('l', 'r') not null,
weight int not null default '0',
visible int not null default '0',
configdata text not null default ''
) ;
# --------------------------------------------------------