Lindenii Project Forge
Login
Commit info
ID9b46e7a889d446d62243cf768619d4615140f0e0
AuthorRunxi Yu<me@runxiyu.org>
Author dateThu, 06 Mar 2025 13:51:05 +0800
CommitterRunxi Yu<me@runxiyu.org>
Committer dateThu, 06 Mar 2025 13:51:05 +0800
Actions
Get patch
sql: Add purge and test scripts
DROP SCHEMA public CASCADE;
CREATE SCHEMA public;
WITH parent_group AS (
	INSERT INTO groups (name, description)
	VALUES ('lindenii', 'The Lindenii Project')
	RETURNING id
),
child_group AS (
	INSERT INTO groups (name, description, parent_group)
	SELECT 'forge', 'Lindenii Forge', id
	FROM parent_group
	RETURNING id
)
INSERT INTO repos (name, group_id, contrib_requirements, filesystem_path)
SELECT 'server', id, 'public', '/home/runxiyu/Lindenii/forge/server/.git'
FROM child_group;

SELECT * FROM groups;
SELECT * FROM repos;