database migration 1.0.4, store topic fetch etag/last-modified, provide these when...
[websub-hub] / src / db / postgres / sql / schema / 1.0.4 / revert.sql
1 BEGIN;
2
3 ALTER TABLE topic
4 DROP COLUMN http_etag,
5 DROP COLUMN http_last_modified
6 ;
7
8 DELETE FROM _meta_schema_version WHERE major = 1 AND minor = 0 AND PATCH = 4;
9
10 COMMIT;