Initial commit

This commit is contained in:
Šesták Vít
2016-01-10 17:31:07 +01:00
commit 4b87ced31f
104 changed files with 4870 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# --- !Ups
CREATE TABLE "cookie_authenticators" (
"id" VARCHAR NOT NULL,
"provider_id" VARCHAR NOT NULL,
"provider_key" VARCHAR NOT NULL,
"last_used" TIMESTAMP NOT NULL,
"expiration" TIMESTAMP NOT NULL,
"idle_timeout" BIGINT NULL,
"cookie_max_age" BIGINT NULL,
"fingerprint" VARCHAR NULL
);
CREATE INDEX cookie_authenticators_id ON cookie_authenticators (id);
# --- !Downs
DROP TABLE cookie_authenticators;