sydtest-sqitch-postgres-persistent-0.1.0.0: test_resources/toy-sqitch-drift/deploy/init.sql
-- Deploy toy-drift:init to pg
-- Intentionally missing the `color` column that the persistent model has.
BEGIN;
CREATE TABLE IF NOT EXISTS widget (
id BIGSERIAL PRIMARY KEY,
name TEXT NOT NULL
);
COMMIT;