mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-23 13:38:57 -05:00
8 lines
151 B
SQL
8 lines
151 B
SQL
--
|
|
-- This updates a 1.30.0 database to 1.30.1
|
|
--
|
|
-- Alter type of Messages column from VARCHAR(255) to TEXT
|
|
--
|
|
|
|
ALTER TABLE Logs MODIFY Message TEXT;
|