aboutsummaryrefslogtreecommitdiff
path: root/sqlite
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-10-19 19:17:37 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-10-19 19:17:37 -0300
commit0ff6217227ce551d6c91524c8e7fd37352e20490 (patch)
treefee2e9da746115fda57ca6123952d614afd283dd /sqlite
parenteba55f8361fc36179e36bf8a3cea5067b5341e37 (diff)
downloadquerymanager-0ff6217227ce551d6c91524c8e7fd37352e20490.tar.gz
querymanager-0ff6217227ce551d6c91524c8e7fd37352e20490.zip
add include path for PostgreSQL + overall cleanup
Some distributions place libpq headers under /usr/include/postgresql which is why it's added to the include path. And even though we don't support it yet, the same happens with MariaDB, with headers being placed under /usr/include/mariadb.
Diffstat (limited to 'sqlite')
-rw-r--r--sqlite/z-001-migrate-v01-to-v02.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite/z-001-migrate-v01-to-v02.sql b/sqlite/z-001-migrate-v01-to-v02.sql
index f471f53..19fdddb 100644
--- a/sqlite/z-001-migrate-v01-to-v02.sql
+++ b/sqlite/z-001-migrate-v01-to-v02.sql
@@ -2,7 +2,7 @@
-- must be manually executed as `sqlite3 -bail -echo tibia.db < migration.sql`
-- because the original schema didn't have a `Patches` table which is necessary
-- with the new automatic patching system. Future migration scripts can be placed
--- in `patches/` for automatic execution but not this one unfortunately.
+-- in `patches/` for automatic execution but not this one, unfortunately.
-- These changes are already present in the latest `schema.sql`, so trying to
-- apply it to a newly created database will result in errors. For more details
-- see `sqlite/README.txt`.