mirror of
https://github.com/moodle/moodle.git
synced 2025-02-22 02:49:53 +01:00
15 lines
353 B
SQL
15 lines
353 B
SQL
# $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'
|
|
) ;
|
|
# --------------------------------------------------------
|