M products/BellHybrid/services/db/databases/databases.json => products/BellHybrid/services/db/databases/databases.json +3 -3
@@ 15,15 15,15 @@
},
{
"name": "settings_bell",
- "version": "4"
+ "version": "5"
},
{
"name": "quotes",
- "version": "0"
+ "version": "1"
},
{
"name": "whats_new",
- "version": "0"
+ "version": "1"
}
]
}
R products/BellHybrid/services/db/databases/migration/quotes/current/87d133bf_Add_a_new_table_for_custom_quotes/down.sql => products/BellHybrid/services/db/databases/migration/quotes/1/down.sql +1 -0
@@ 7,3 7,4 @@
-- Insert SQL here
DROP TABLE custom_quote_table;
+
R products/BellHybrid/services/db/databases/migration/quotes/current/87d133bf_Add_a_new_table_for_custom_quotes/up.sql => products/BellHybrid/services/db/databases/migration/quotes/1/up.sql +1 -0
@@ 12,3 12,4 @@ CREATE TABLE IF NOT EXISTS custom_quote_table (
author TEXT,
PRIMARY KEY (quote_id)
);
+
D products/BellHybrid/services/db/databases/migration/quotes/current/87d133bf_Add_a_new_table_for_custom_quotes/.meta => products/BellHybrid/services/db/databases/migration/quotes/current/87d133bf_Add_a_new_table_for_custom_quotes/.meta +0 -6
@@ 1,6 0,0 @@
-{
- "id": "87d133bf-f98c-429d-9f15-6963fd72f7e1",
- "date": "2025-01-23 15:32:56",
- "message": "Add a new table for custom quotes",
- "parent": 0
-}>
\ No newline at end of file
R products/BellHybrid/services/db/databases/migration/settings_bell/current/91a948e7_Add_quote_group_setting/down.sql => products/BellHybrid/services/db/databases/migration/settings_bell/5/down.sql +9 -0
@@ 1,6 1,14 @@
-- Copyright (c) 2017-2025, Mudita Sp. z.o.o. All rights reserved.
-- For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
+-- Message: Add quote interval setting
+-- Revision: b6dd0dff-d717-4bf7-97e8-cc3e6359d9ff
+-- Create Date: 2025-01-30 13:47:07
+
+-- Insert SQL here
+
+DELETE FROM settings_tab WHERE path = 'quotes_interval';
+
-- Message: Add quote group setting
-- Revision: 91a948e7-4cff-4492-b25c-e219cfb4e8de
-- Create Date: 2025-01-27 08:55:40
@@ 8,3 16,4 @@
-- Insert SQL here
DELETE FROM settings_tab WHERE path = 'quotes_group';
+
R products/BellHybrid/services/db/databases/migration/settings_bell/current/91a948e7_Add_quote_group_setting/up.sql => products/BellHybrid/services/db/databases/migration/settings_bell/5/up.sql +10 -0
@@ 9,3 9,13 @@
INSERT OR IGNORE INTO settings_tab (path, value) VALUES
('quotes_group', 'Predefined');
+
+-- Message: Add quote interval setting
+-- Revision: b6dd0dff-d717-4bf7-97e8-cc3e6359d9ff
+-- Create Date: 2025-01-30 13:47:07
+
+-- Insert SQL here
+
+INSERT OR IGNORE INTO settings_tab (path, value) VALUES
+ ('quotes_interval', 'AtMidnight');
+
D products/BellHybrid/services/db/databases/migration/settings_bell/current/91a948e7_Add_quote_group_setting/.meta => products/BellHybrid/services/db/databases/migration/settings_bell/current/91a948e7_Add_quote_group_setting/.meta +0 -6
@@ 1,6 0,0 @@
-{
- "id": "91a948e7-4cff-4492-b25c-e219cfb4e8de",
- "date": "2025-01-27 08:55:40",
- "message": "Add quote group setting",
- "parent": 0
-}>
\ No newline at end of file
D products/BellHybrid/services/db/databases/migration/settings_bell/current/b6dd0dff_Add_quote_interval_setting/.meta => products/BellHybrid/services/db/databases/migration/settings_bell/current/b6dd0dff_Add_quote_interval_setting/.meta +0 -6
@@ 1,6 0,0 @@
-{
- "id": "b6dd0dff-d717-4bf7-97e8-cc3e6359d9ff",
- "date": "2025-01-30 13:47:07",
- "message": "Add quote interval setting",
- "parent": "91a948e7-4cff-4492-b25c-e219cfb4e8de"
-}>
\ No newline at end of file
D products/BellHybrid/services/db/databases/migration/settings_bell/current/b6dd0dff_Add_quote_interval_setting/down.sql => products/BellHybrid/services/db/databases/migration/settings_bell/current/b6dd0dff_Add_quote_interval_setting/down.sql +0 -10
@@ 1,10 0,0 @@
--- Copyright (c) 2017-2025, Mudita Sp. z.o.o. All rights reserved.
--- For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
-
--- Message: Add quote interval setting
--- Revision: b6dd0dff-d717-4bf7-97e8-cc3e6359d9ff
--- Create Date: 2025-01-30 13:47:07
-
--- Insert SQL here
-
-DELETE FROM settings_tab WHERE path = 'quotes_interval';
D products/BellHybrid/services/db/databases/migration/settings_bell/current/b6dd0dff_Add_quote_interval_setting/up.sql => products/BellHybrid/services/db/databases/migration/settings_bell/current/b6dd0dff_Add_quote_interval_setting/up.sql +0 -11
@@ 1,11 0,0 @@
--- Copyright (c) 2017-2025, Mudita Sp. z.o.o. All rights reserved.
--- For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
-
--- Message: Add quote interval setting
--- Revision: b6dd0dff-d717-4bf7-97e8-cc3e6359d9ff
--- Create Date: 2025-01-30 13:47:07
-
--- Insert SQL here
-
-INSERT OR IGNORE INTO settings_tab (path, value) VALUES
- ('quotes_interval', 'AtMidnight');
R products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/down.sql => products/BellHybrid/services/db/databases/migration/whats_new/1/down.sql +1 -0
@@ 8,3 8,4 @@
-- Insert SQL here
DELETE FROM whats_new WHERE Major = 2 AND Minor = 10 AND Patch = 0 AND English_title = 'Custom quotations';
+
R products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/up.sql => products/BellHybrid/services/db/databases/migration/whats_new/1/up.sql +1 -0
@@ 9,3 9,4 @@
INSERT OR REPLACE INTO whats_new (Major, Minor, Patch, English_title, Deutsch_title, Español_title, Polski_title, Français_title, Icon, English_desc, Deutsch_desc, Español_desc, Polski_desc, Français_desc) VALUES
(2, 10, 0, 'Custom quotations', 'Eigene Zitate', 'Citas propias', 'Własne cytaty', 'Citations persos', 'whatsnew_quote_W_M', 'You can now add your own quotations using Mudita Center.', 'Füge Zitate mit Mudita Center hinzu.', 'Ahora puedes añadir tus propias citas usando Mudita Center.', 'Możesz teraz dodawać własne cytaty za pomocą Mudita Center.', 'Ajoutez vos citations via Mudita Center.');
+
D products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/.meta => products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/.meta +0 -6
@@ 1,6 0,0 @@
-{
- "id": "d1af203c-2982-4986-b680-fc7465019c4a",
- "date": "2025-08-07 17:30:39",
- "message": "Add fix for update from 2 9 x",
- "parent": 0
-}>
\ No newline at end of file