mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-02 12:49:20 +01:00
6 lines
156 B
SQL
6 lines
156 B
SQL
CREATE TABLE `cron_job_configuration` (
|
|
`name` text PRIMARY KEY NOT NULL,
|
|
`cron_expression` text NOT NULL,
|
|
`is_enabled` integer DEFAULT true NOT NULL
|
|
);
|