File: 2_record.sql

package info (click to toggle)
golang-github-rubenv-sql-migrate 0.0~git20191213.0633851-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 276 kB
  • sloc: sh: 42; makefile: 4; sql: 4
file content (5 lines) | stat: -rw-r--r-- 100 bytes parent folder | download | duplicates (3)
1
2
3
4
5
-- +migrate Up
INSERT INTO people (id) VALUES (1);

-- +migrate Down
DELETE FROM people WHERE id=1;