Files
chat/internal/db/schema/003_users.sql
user 0b132cfbf4 fix: replace conflicting migration 003 with no-op
Migration 003 tried to recreate tables (users, channel_members, messages)
with INTEGER IDs, conflicting with 002_schema.sql which already defines
them with TEXT UUIDs. This caused all tests to fail.
2026-02-20 03:31:02 -08:00

5 lines
216 B
SQL

-- Migration 003: no-op (schema already created by 002_schema.sql)
-- This migration previously conflicted with 002 by attempting to recreate
-- tables with incompatible column types (INTEGER vs TEXT IDs).
SELECT 1;