packages feed

sydtest-sqitch-postgres-0.1.0.0: test_resources/toy-sqitch-non-idempotent/deploy/init.sql

-- Deploy toy-non-idempotent:init to pg
BEGIN;

CREATE TABLE widget (
    id   SERIAL PRIMARY KEY,
    name TEXT NOT NULL
);

COMMIT;