migration

This commit is contained in:
spaced4ndy
2024-04-19 15:48:24 +04:00
parent ae76ece823
commit 2e5e6e5911
3 changed files with 21 additions and 1 deletions
+1
View File
@@ -141,6 +141,7 @@ library
Simplex.Chat.Migrations.M20240313_drop_agent_ack_cmd_id
Simplex.Chat.Migrations.M20240324_custom_data
Simplex.Chat.Migrations.M20240402_item_forwarded
Simplex.Chat.Migrations.M20240419_enable_pq_support
Simplex.Chat.Mobile
Simplex.Chat.Mobile.File
Simplex.Chat.Mobile.Shared
@@ -0,0 +1,17 @@
{-# LANGUAGE QuasiQuotes #-}
module Simplex.Chat.Migrations.M20240419_enable_pq_support where
import Database.SQLite.Simple (Query)
import Database.SQLite.Simple.QQ (sql)
m20240419_enable_pq_support :: Query
m20240419_enable_pq_support =
[sql|
UPDATE connections SET pq_support = 1 WHERE conn_type = 'contact';
|]
down_m20240419_enable_pq_support :: Query
down_m20240419_enable_pq_support =
[sql|
|]
+3 -1
View File
@@ -105,6 +105,7 @@ import Simplex.Chat.Migrations.M20240228_pq
import Simplex.Chat.Migrations.M20240313_drop_agent_ack_cmd_id
import Simplex.Chat.Migrations.M20240324_custom_data
import Simplex.Chat.Migrations.M20240402_item_forwarded
import Simplex.Chat.Migrations.M20240419_enable_pq_support
import Simplex.Messaging.Agent.Store.SQLite.Migrations (Migration (..))
schemaMigrations :: [(String, Query, Maybe Query)]
@@ -209,7 +210,8 @@ schemaMigrations =
("20240228_pq", m20240228_pq, Just down_m20240228_pq),
("20240313_drop_agent_ack_cmd_id", m20240313_drop_agent_ack_cmd_id, Just down_m20240313_drop_agent_ack_cmd_id),
("20240324_custom_data", m20240324_custom_data, Just down_m20240324_custom_data),
("20240402_item_forwarded", m20240402_item_forwarded, Just down_m20240402_item_forwarded)
("20240402_item_forwarded", m20240402_item_forwarded, Just down_m20240402_item_forwarded),
("20240419_enable_pq_support", m20240419_enable_pq_support, Just down_m20240419_enable_pq_support)
]
-- | The list of migrations in ascending order by date