„Upgrade.md“ ändern

This commit is contained in:
Mario Voigt 2021-09-29 11:54:18 +02:00
parent f9ef056240
commit 4cf6423843
1 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,13 @@
## 29.10.2020
##### SQL Update
##### SQL Update
```
ALTER TABLE Smartlock ADD COLUMN `doorsensorBatteryCritical` BOOLEAN NOT NULL AFTER `doorState`;
ALTER TABLE Smartlock ADD COLUMN `keypadBatteryCritical` BOOLEAN NOT NULL AFTER `homekitState`;
ALTER TABLE Smartlock ADD COLUMN `batteryCharging` BOOLEAN NOT NULL AFTER `batteryCharge`;
```
##### SQL Update
```
ALTER TABLE Smartlock ADD COLUMN `autoUpdateEnabled` BOOLEAN NOT NULL AFTER `autoUnlatch`;
ALTER TABLE Smartlock ADD COLUMN `batteryCharge` SMALLINT NOT NULL AFTER `automaticBatteryTypeDetection`;