mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-05-03 05:44:20 +02:00
Initial commit
This commit is contained in:
18
conf/evolutions/default/5.sql
Normal file
18
conf/evolutions/default/5.sql
Normal 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;
|
||||
Reference in New Issue
Block a user