Add a field asset_flags and a corresponding enum to the asset database. This

CHANGES THE ASSET SERVER PROTOCOL and means you CAN NOT MIX PRIOR VERSIONS
WITH LATER ONES. It may also eat your babies, yada, yada, yada.
The usual cautions for migrations to the assets table apply.
Coding: Can not guarantee nut free.
This commit is contained in:
Melanie
2010-05-09 17:02:22 +01:00
parent c1fe07b022
commit 9b22393cf3
4 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
BEGIN;
ALTER TABLE assets ADD COLUMN asset_flags INTEGER NOT NULL DEFAULT 0;
COMMIT;