...

Text file src/github.com/ory/x/popx/stub/migrations/transactional/20200519101057000000_create_recovery_addresses.sqlite3.up.sql

Documentation: github.com/ory/x/popx/stub/migrations/transactional

     1CREATE TABLE "identity_recovery_addresses" (
     2"id" TEXT PRIMARY KEY,
     3"via" TEXT NOT NULL,
     4"value" TEXT NOT NULL,
     5"identity_id" char(36) NOT NULL,
     6"created_at" DATETIME NOT NULL,
     7"updated_at" DATETIME NOT NULL,
     8FOREIGN KEY (identity_id) REFERENCES identities (id) ON DELETE cascade
     9)

View as plain text