database migration 1.0.4, store topic fetch etag/last-modified, provide these when...
[websub-hub] / src / db / postgres / sql / schema / 1.0.4 / apply.sql
1 BEGIN;
2
3 ALTER TABLE topic
4 ADD COLUMN http_etag TEXT,
5 ADD COLUMN http_last_modified TEXT
6 ;
7
8 INSERT INTO _meta_schema_version (major, minor, patch) VALUES (1, 0, 4);
9
10 COMMIT;