summaryrefslogtreecommitdiff
path: root/scripts/505.notification_upgrade.sh
diff options
context:
space:
mode:
authorseungha.son <seungha.son@samsung.com>2017-01-17 11:23:34 +0900
committerSon seungha <seungha.son@samsung.com>2017-01-17 02:15:11 -0800
commita5558e2f17ae3e49445a4e7b80710aa2a57b3ba5 (patch)
treebbca96f37d8bd9ed06004b761a6640a7203cd916 /scripts/505.notification_upgrade.sh
parent8c5d23815751f9b0c101fd89235f89f141ca8e2f (diff)
downloadnotification-a5558e2f17ae3e49445a4e7b80710aa2a57b3ba5.tar.gz
notification-a5558e2f17ae3e49445a4e7b80710aa2a57b3ba5.tar.bz2
notification-a5558e2f17ae3e49445a4e7b80710aa2a57b3ba5.zip
- Get/Set timeout value in second when the notification can be hidden from the viewer. Signed-off-by: seungha.son <seungha.son@samsung.com> Change-Id: I2a013f58da6aa16bf153e2ca6eb5641a661e92c5
Diffstat (limited to 'scripts/505.notification_upgrade.sh')
-rw-r--r--scripts/505.notification_upgrade.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/505.notification_upgrade.sh b/scripts/505.notification_upgrade.sh
index f57d2ff..152e55a 100644
--- a/scripts/505.notification_upgrade.sh
+++ b/scripts/505.notification_upgrade.sh
@@ -61,6 +61,11 @@ CREATE TABLE noti_list_temp (
progress_percentage DOUBLE default 0,
ongoing_flag INTEGER default 0,
auto_remove INTEGER default 1,
+ default_button_index INTEGER default 0,
+ hide_timeout INTEGER default 0,
+ delete_timeout INTEGER default 0,
+ text_input_max_length INTEGER default 0,
+ event_flag INTEGER default 0,
uid INTEGER
);
INSERT INTO noti_list_temp (type, layout, caller_pkgname, launch_pkgname, image_path, group_id, internal_group_id, priv_id, title_key, b_text, b_key, tag, b_format_args, num_format_args, text_domain, text_dir, time, insert_time, args, group_args, b_execute_option, b_service_responding, b_service_single_launch, b_service_multi_launch, b_event_handler_click_on_button_1, b_event_handler_click_on_button_2, b_event_handler_click_on_button_3, b_event_handler_click_on_button_4, b_event_handler_click_on_button_5, b_event_handler_click_on_button_6, b_event_handler_click_on_icon, b_event_handler_click_on_thumbnail, sound_type, sound_path, vibration_type, vibration_path, led_operation, led_argb, led_on_ms, led_off_ms, flags_for_property, flag_simmode, display_applist, progress_size, progress_percentage, ongoing_flag, auto_remove) \
@@ -153,6 +158,11 @@ CREATE TABLE noti_template (
progress_percentage DOUBLE default 0,
ongoing_flag INTEGER default 0,
auto_remove INTEGER default 1,
+ default_button_index INTEGER default 0,
+ hide_timeout INTEGER default 0,
+ delete_timeout INTEGER default 0,
+ text_input_max_length INTEGER default 0,
+ event_flag INTEGER default 0,
uid INTEGER,
template_name TEXT,
UNIQUE (caller_pkgname, template_name)