Initial commit

This commit is contained in:
CarmiCoven
2026-07-23 01:02:12 +10:00
commit b8ffacd916
11 changed files with 132 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
BEGIN;
-- Version dependency checks
DO $$
ASSERT current_module_version('PROFILES') = 1, 'Dependency version mismatch: PROFILES';
$$ LANGUAGE plpgsql;
-- Plugin version history
INSERT INTO version_history (component, from_version, to_version, author) VALUES ('AWESOME_PLUGIN', 0, 1, 'Initial Creation');
COMMIT;