mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2025-12-23 22:37:53 -05:00
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1705 e3e1d417-86f3-4887-817a-d78f3d33393f
12 lines
350 B
SQL
12 lines
350 B
SQL
--
|
|
-- This updates a 0.9.11 database to 0.9.12
|
|
--
|
|
alter table Monitors add column Orientation enum('0','90','180','270') not null default '0' after Palette;
|
|
-- These are optional, it just seemed a good time...
|
|
optimize table Frames;
|
|
optimize table Events;
|
|
optimize table Filters;
|
|
optimize table Zones;
|
|
optimize table Monitors;
|
|
optimize table Stats;
|