Add OIDC authentification in project

This commit is contained in:
Edwin ANNE 2025-10-16 21:42:50 +02:00
parent 777515f754
commit 7f904d9e92
17 changed files with 547 additions and 26 deletions

View file

@ -0,0 +1,10 @@
-- Create table setting
CREATE TABLE IF NOT EXISTS `setting` (
`setting_id` varchar(36) PRIMARY KEY,
`key` varchar(255) UNIQUE NOT NULL,
`value` varchar(4000),
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);