fix(db): correct SQL comment syntax for SQLite compatibility

- Replace Python-style # comments with SQL-standard -- comments
- SQLite does not recognize # as comment character
- Fixes database initialization failure on first run

Test: Database now initializes successfully.
This commit is contained in:
LemonNexus 2026-02-08 17:06:45 +00:00
parent df5c0212e8
commit a516ff4d0c
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Description: SQLite database schema for Lemontropia Suite
# Implements the Data Principle: Every session is a Project
# Schema version: 1.0.0
# Created: 2026-02-08
-- Description: SQLite database schema for Lemontropia Suite
-- Implements the Data Principle: Every session is a Project
-- Schema version: 1.0.0
-- Created: 2026-02-08
-- Enable foreign key support
PRAGMA foreign_keys = ON;