test/example-2/0001-add-email.sql @ 6b27e5b734d8

Get Postgres working, add CLI
author Steve Losh <steve@stevelosh.com>
date Fri, 05 Apr 2024 10:02:45 -0400
parents (none)
children (none)
ALTER TABLE users ADD COLUMN email TEXT NOT NULL DEFAULT '';

UPDATE users SET email = 'steve@stevelosh.com' WHERE NAME = 'sjl';