Downgrade to mariadb 11.8.5 (lts)

I am now using a replication system that uses the master-slave system across 3 servers, db1 is prod, the master, db2 and 3 are replication slaves. This will ensure no data loss can really ever occur unless there is a fire here.
This commit is contained in:
2026-02-13 02:51:36 -07:00
parent bc0a3731be
commit 2995540b38
2 changed files with 7 additions and 7 deletions

View File

@@ -3,8 +3,8 @@
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Feb 02, 2026 at 05:08 AM
-- Server version: 12.1.2-MariaDB
-- Generation Time: Feb 13, 2026 at 09:50 AM
-- Server version: 11.8.5-MariaDB-log
-- PHP Version: 8.5.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
@@ -79,7 +79,7 @@ CREATE TABLE `splashtexts` (
`userId` bigint(20) NOT NULL,
`content` varchar(72) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`timestamp` bigint(20) NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 1
`state` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=COMPRESSED;
-- --------------------------------------------------------