From bdc00d67b2ff774b0654a461086f304af2b58137 Mon Sep 17 00:00:00 2001 From: boojack Date: Mon, 3 Apr 2023 17:13:41 +0800 Subject: [PATCH] chore: add default local storage path (#1457) --- .../migration/prod/0.12/05__default_local_storage_path.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 store/db/migration/prod/0.12/05__default_local_storage_path.sql diff --git a/store/db/migration/prod/0.12/05__default_local_storage_path.sql b/store/db/migration/prod/0.12/05__default_local_storage_path.sql new file mode 100644 index 00000000..71908e84 --- /dev/null +++ b/store/db/migration/prod/0.12/05__default_local_storage_path.sql @@ -0,0 +1,7 @@ +INSERT + OR IGNORE INTO system_setting(name, value) +VALUES + ( + 'local-storage-path', + '"assets/{timestamp}_{filename}"' + ); \ No newline at end of file