mirror of
https://github.com/moodle/moodle.git
synced 2025-08-10 11:26:41 +02:00
First versions for postgressql
This commit is contained in:
parent
7ef144842f
commit
ce24161b7e
2 changed files with 59 additions and 0 deletions
14
blocks/db/postgres7.sql
Normal file
14
blocks/db/postgres7.sql
Normal 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'
|
||||
) ;
|
||||
# --------------------------------------------------------
|
Loading…
Add table
Add a link
Reference in a new issue