mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
10 lines
312 B
SQL
10 lines
312 B
SQL
-- 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
|
|
);
|
|
|
|
|