mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-03-30 20:20:17 +00:00
Add migration step to gravity version 15
Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
parent
5207b2286c
commit
597f00eb1e
1 changed files with 11 additions and 0 deletions
11
advanced/Scripts/database_migration/gravity/14_to_15.sql
Normal file
11
advanced/Scripts/database_migration/gravity/14_to_15.sql
Normal file
|
@ -0,0 +1,11 @@
|
|||
.timeout 30000
|
||||
|
||||
PRAGMA FOREIGN_KEYS=OFF;
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
DROP VIEW vw_adlist;
|
||||
|
||||
UPDATE info SET value = 15 WHERE property = 'version';
|
||||
|
||||
COMMIT;
|
Loading…
Add table
Reference in a new issue