Add DDL-based DB init and bootstrap
Add bootstrap entrypoint and migrate DB schema setup to SQL files. Introduces bootstrap.js, many data/ddl/*.sql files, and a new runDDL() in modules/database.js (exports pool and runDDL). Remove legacy modules/databaseGlobals.js. Update repositories and code to use database.pool.query calls. Bump package version and set main to bootstrap.js. Clean up server.js to remove inline DB/cert init (now handled by bootstrap). Overall: refactor DB initialization to run ordered SQL DDL files and centralize startup logic.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
DROP TRIGGER IF EXISTS log_new_user_name;
|
||||
|
||||
CREATE TRIGGER log_new_user_name
|
||||
AFTER INSERT ON players
|
||||
FOR EACH ROW
|
||||
BEGIN
|
||||
INSERT INTO uuidToNameHistory (uuid, username, changedAt)
|
||||
VALUES (NEW.uuid, NEW.username, NULL);
|
||||
END;
|
||||
Reference in New Issue
Block a user