First versions for postgressql

This commit is contained in:
paca70 2004-04-19 04:15:24 +00:00
parent 7ef144842f
commit ce24161b7e
2 changed files with 59 additions and 0 deletions

14
blocks/db/postgres7.sql Normal file
View file

@ -0,0 +1,14 @@
# $Id$
#
# Table structure for table blocks
#
CREATE TABLE prefix_blocks (
id SERIAL8 PRIMARY KEY,
name varchar(40) NOT NULL default '',
version INT8 NOT NULL default '0',
cron INT8 NOT NULL default '0',
lastcron INT8 NOT NULL default '0',
visible int NOT NULL default '1'
) ;
# --------------------------------------------------------