Implement session and system tests

This commit is contained in:
2024-11-25 21:44:43 +01:00
parent 9ac047d440
commit 32bd202d6f
9 changed files with 520 additions and 10 deletions

View File

@@ -49,9 +49,6 @@ var migrations = []Migration{
{
Version: 2,
SQL: `
-- Enable foreign key constraints
PRAGMA foreign_keys = ON;
-- Create sessions table for authentication
CREATE TABLE IF NOT EXISTS sessions (
id TEXT PRIMARY KEY,