mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
7 lines
108 B
SQL
7 lines
108 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE entries (
|
|
id INTEGER NOT NULL PRIMARY KEY,
|
|
entry VARCHAR NOT NULL
|
|
)
|
|
|