Merged in feature/demo-support (pull request #207)

Feature/demo support

* index logs now debug

* demo data loader
This commit is contained in:
Jay Brown
2026-02-02 19:08:08 +00:00
parent 63c12a2f44
commit 963ccc6553
15 changed files with 2240 additions and 314 deletions
@@ -0,0 +1,4 @@
-- Revert: make effectiveDate required again
-- First set any NULL values to createdAt as a fallback
UPDATE eulaVersions SET effectiveDate = createdAt WHERE effectiveDate IS NULL;
ALTER TABLE eulaVersions ALTER COLUMN effectiveDate SET NOT NULL;
@@ -0,0 +1,3 @@
-- Make effectiveDate nullable in eulaVersions table
-- This allows EULA versions to be created without specifying an effective date
ALTER TABLE eulaVersions ALTER COLUMN effectiveDate DROP NOT NULL;