mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
194 B
MySQL
8 lines
194 B
MySQL
2 years ago
|
-- idp
|
||
|
CREATE TABLE idp (
|
||
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||
|
name TEXT NOT NULL,
|
||
|
type TEXT NOT NULL,
|
||
|
identifier_filter TEXT NOT NULL DEFAULT '',
|
||
|
config TEXT NOT NULL DEFAULT '{}'
|
||
|
);
|