...

Text file src/github.com/ory/x/popx/stub/migrations/source/20200830130644_add_verification_methods.up.fizz

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

     1create_table("selfservice_verification_flow_methods") {
     2	t.Column("id", "uuid", {primary: true})
     3  t.Column("method", "string", {"size": 32})
     4  t.Column("selfservice_verification_flow_id", "uuid")
     5  t.Column("config", "json")
     6}
     7
     8add_column("selfservice_verification_flows", "active_method", "string", {"size": 32, null: true})

View as plain text