From 557ae192970e3fa1b7ccfc3e99a7c5eb270427a0 Mon Sep 17 00:00:00 2001 From: Rechee Date: Wed, 8 Jan 2020 17:45:55 -0800 Subject: [PATCH] setting description to be blank instead of null --- android/uhabits-core/src/main/resources/migrations/23.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/uhabits-core/src/main/resources/migrations/23.sql b/android/uhabits-core/src/main/resources/migrations/23.sql index 0afc69fe7..1592c4e49 100644 --- a/android/uhabits-core/src/main/resources/migrations/23.sql +++ b/android/uhabits-core/src/main/resources/migrations/23.sql @@ -2,4 +2,4 @@ alter table Habits add column question text; update Habits set question = description; -update Habits set description = null; \ No newline at end of file +update Habits set description = ""; \ No newline at end of file