mirror of
https://github.com/moodle/moodle.git
synced 2025-03-13 04:01:40 +01:00
This is a sort of "dummy" activity that allows HTML to be placed anywhere in the course sections ...
7 lines
150 B
SQL
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'
|
|
);
|