Files
dokuwiki-plugin-struct/db/update0008.sql
2016-07-18 11:58:04 +02:00

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;