We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59ef648 commit 0a87be8Copy full SHA for 0a87be8
src/share/database/scripts/mysql/upgrade_028_to_029.sh.in
@@ -28,7 +28,7 @@ fi
28
29
# Check version.
30
version=$(mysql_version "${@}")
31
-if test "${version}" != "27.0"; then
+if test "${version}" != "28.0"; then
32
printf 'This script upgrades 28.0 to 29.0. '
33
printf 'Reported version is %s. Skipping upgrade.\n' "${version}"
34
exit 0
src/share/database/scripts/pgsql/upgrade_027_to_028.sh.in
@@ -63,8 +63,9 @@ ALTER TABLE dhcp6_subnet
63
ADD COLUMN ddns_ttl_min BIGINT DEFAULT NULL,
64
ADD COLUMN ddns_ttl_max BIGINT DEFAULT NULL;
65
66
--- New lease state for address registration
67
-INSERT INTO lease_state VALUES (4, 'registered');
+-- Update the schema version number.
+UPDATE schema_version
68
+ SET version = '28', minor = '0';
69
70
-- This line concludes the schema upgrade to version 28.0.
71
0 commit comments