mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-09-01 18:08:36 +00:00
15 lines
385 B
Haskell
15 lines
385 B
Haskell
{-# LANGUAGE CPP #-}
|
|
|
|
module Simplex.Messaging.Agent.Store.Migrations.App
|
|
#if defined(dbPostgres)
|
|
( module Simplex.Messaging.Agent.Store.Postgres.Migrations.App,
|
|
)
|
|
where
|
|
import Simplex.Messaging.Agent.Store.Postgres.Migrations.App
|
|
#else
|
|
( module Simplex.Messaging.Agent.Store.SQLite.Migrations.App,
|
|
)
|
|
where
|
|
import Simplex.Messaging.Agent.Store.SQLite.Migrations.App
|
|
#endif
|