diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-01-04 02:31:25 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-01-04 02:31:25 +0100 |
| commit | 0be7bb847f64367fbc64fbdea2d11684fbcdaa8f (patch) | |
| tree | 4a22ceeadadc2767437614712114c2392402dc2a /server/migrations/1_initial_eyeballs.sql | |
| parent | d09ffb6ee8b872c69321b3a9d992f278224741dc (diff) | |
Support ldap in auth
Non-test auth is now using ldap for account syncing and authentication.
Test auth is still using hardcoded users (user and other). But it is
now also possible to login as "other".
Diffstat (limited to 'server/migrations/1_initial_eyeballs.sql')
| -rw-r--r-- | server/migrations/1_initial_eyeballs.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/migrations/1_initial_eyeballs.sql b/server/migrations/1_initial_eyeballs.sql index aeb1470..2e5f771 100644 --- a/server/migrations/1_initial_eyeballs.sql +++ b/server/migrations/1_initial_eyeballs.sql @@ -8,7 +8,7 @@ CREATE TABLE IF NOT EXISTS users ( id BIGINT UNSIGNED PRIMARY KEY AUTO_INCREMENT, username VARCHAR(256) NOT NULL UNIQUE, name VARCHAR(1024) NOT NULL DEFAULT '', - active BOOLEAN NOT NULL DEFAULT 1 + dn VARCHAR(256) NULL ); CREATE TABLE IF NOT EXISTS project_users ( |
