summaryrefslogtreecommitdiff
path: root/sql/mysql/migrations
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-04-08 09:36:04 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-04-08 09:36:04 +0300
commiteedc1460e5dadb00a731c1974642a4db7ab30868 (patch)
treed00876cda056fa5201365d3e0760317b7090b40f /sql/mysql/migrations
parent25d3ce4ee8f411a19c3a0e69ebb5c575c16243a8 (diff)
support transparent encryption for feed passwords, bump schema to drop length limit of ttrss_feeds.auth_pass
Diffstat (limited to 'sql/mysql/migrations')
-rw-r--r--sql/mysql/migrations/148.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/mysql/migrations/148.sql b/sql/mysql/migrations/148.sql
new file mode 100644
index 000000000..64eca0972
--- /dev/null
+++ b/sql/mysql/migrations/148.sql
@@ -0,0 +1,3 @@
+alter table ttrss_feeds change auth_pass auth_pass text not null;
+
+update ttrss_version set schema_version = 148;