mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-08-01 07:42:34 +00:00
10 lines
225 B
SQL
10 lines
225 B
SQL
-- keeps the title of pages for easy selection
|
|
CREATE TABLE titles (
|
|
pid NOT NULL,
|
|
title NOT NULL,
|
|
PRIMARY KEY(pid)
|
|
);
|
|
|
|
-- fill with page names
|
|
INSERT INTO titles SELECT DISTINCT pid, pid FROM schema_assignments;
|