From 5ec035874ecac6e6de6ab40a1d729672b823b0b6 Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Mon, 20 Jan 2025 23:04:40 +0100 Subject: [PATCH] destination enable: update schema --- share/schema.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/schema.sql b/share/schema.sql index 2e4f3c6..62fa9d1 100644 --- a/share/schema.sql +++ b/share/schema.sql @@ -15,7 +15,8 @@ CREATE TABLE IF NOT EXISTS source_files ( ); CREATE TABLE IF NOT EXISTS destinations ( id INTEGER PRIMARY KEY, - name TEXT UNIQUE NOT NULL + name TEXT UNIQUE NOT NULL, + enabled INTEGER DEFAULT 1 ); CREATE TABLE IF NOT EXISTS destination_files ( id INTEGER PRIMARY KEY,