all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 8f30bdef673a08d8f7003951962400a609ec64f0 295 bytes (raw)
name: src/sql/upgrade-5.sql 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
 
BEGIN TRANSACTION;

CREATE TABLE Events (
  id            INTEGER PRIMARY KEY,
  type          TEXT NOT NULL,
  timestamp     INTEGER NOT NULL,
  event_json    TEXT NOT NULL
);

CREATE TABLE EventsOutbox (
  event_id INTEGER NOT NULL,
  FOREIGN KEY (event_id) REFERENCES Events (id)
);

COMMIT;

debug log:

solving 8f30bde ...
found 8f30bde in https://yhetil.org/guix/20191028081026.25988-1-mail@cbaines.net/ ||
	https://yhetil.org/guix/20191228190554.7920-1-mail@cbaines.net/ ||
	https://yhetil.org/guix/20191128183651.16618-1-mail@cbaines.net/ ||
	https://yhetil.org/guix/20191228195458.10464-1-mail@cbaines.net/

applying [1/1] https://yhetil.org/guix/20191028081026.25988-1-mail@cbaines.net/
diff --git a/src/sql/upgrade-5.sql b/src/sql/upgrade-5.sql
new file mode 100644
index 0000000..8f30bde

Checking patch src/sql/upgrade-5.sql...
Applied patch src/sql/upgrade-5.sql cleanly.

skipping https://yhetil.org/guix/20191228190554.7920-1-mail@cbaines.net/ for 8f30bde
skipping https://yhetil.org/guix/20191128183651.16618-1-mail@cbaines.net/ for 8f30bde
skipping https://yhetil.org/guix/20191228195458.10464-1-mail@cbaines.net/ for 8f30bde
index at:
100644 8f30bdef673a08d8f7003951962400a609ec64f0	src/sql/upgrade-5.sql

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.