moodle/mod/label/db/postgres7.sql
moodler 2c5c3e62a7 New module: Label.
This is a sort of "dummy" activity that allows HTML to be placed
anywhere in the course sections ...
2003-09-14 12:30:09 +00:00

7 lines
150 B
SQL

CREATE TABLE prefix_label (
id SERIAL PRIMARY KEY,
name varchar(255) default NULL,
content text,
timemodified integer NOT NULL default '0'
);