Mercurial > hg > rc1
view SQL/oracle/2016112200.sql @ 35:05c4c32948af
.hgignore: add vendor tree
composer.json: new packages
plugins/thunderbird_labels/thunderbird_labels.php: change hook and RFC822 use wrt whitelisting to avoid deprecated stuff
index.php: commented debugging hooks
others: new releases of vendor packages?
| author | Charlie Root |
|---|---|
| date | Thu, 30 Aug 2018 16:21:59 -0400 |
| parents | 1e000243b222 |
| children |
line wrap: on
line source
DROP TABLE "cache"; DROP TABLE "cache_shared"; CREATE TABLE "cache" ( "user_id" integer NOT NULL REFERENCES "users" ("user_id") ON DELETE CASCADE, "cache_key" varchar(128) NOT NULL, "expires" timestamp with time zone DEFAULT NULL, "data" long NOT NULL, PRIMARY KEY ("user_id", "cache_key") ); CREATE INDEX "cache_expires_idx" ON "cache" ("expires"); CREATE TABLE "cache_shared" ( "cache_key" varchar(255) NOT NULL, "expires" timestamp with time zone DEFAULT NULL, "data" long NOT NULL, PRIMARY KEY ("cache_key") ); CREATE INDEX "cache_shared_expires_idx" ON "cache_shared" ("expires");
