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.
5 lines
216 B
SQL
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;
|