mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
12 lines
313 B
Haskell
12 lines
313 B
Haskell
{-# LANGUAGE QuasiQuotes #-}
|
|
|
|
module Simplex.Chat.Migrations.M20220404_files_cancelled where
|
|
|
|
import Database.SQLite.Simple (Query)
|
|
import Database.SQLite.Simple.QQ (sql)
|
|
|
|
m20220404_files_cancelled :: Query
|
|
m20220404_files_cancelled =
|
|
[sql|
|
|
ALTER TABLE files ADD COLUMN cancelled INTEGER; -- 1 for cancelled
|
|
|]
|