initial check-in

This commit is contained in:
Robert Gaggl 2003-12-08 22:59:01 +00:00
parent efc302e658
commit 666a8734ac
19 changed files with 275 additions and 0 deletions

View file

@ -0,0 +1,14 @@
use antville;
alter table AV_SITE add column SITE_F_LAYOUT mediumint(10) null after SITE_EMAIL;
alter table AV_LAYOUT add column LAYOUT_ISIMPORT tinyint(1) null after LAYOUT_SHAREABLE;
alter table AV_SKIN add column SKIN_ISCUSTOM tinyint(1) null after SKIN_NAME;
update AV_SKIN set SKIN_ISCUSTOM = 0;
update AV_SKIN set SKIN_NAME = "mgrlistitem" where SKIN_PROTOTYPE = "file" and SKIN_NAME = "preview";
update AV_SKIN set SKIN_NAME = "mgrlistitem" where SKIN_PROTOTYPE = "image" and SKIN_NAME = "preview";
update AV_SKIN set SKIN_NAME = "mgrlistitem" where SKIN_PROTOTYPE = "poll" and SKIN_NAME = "listitem";
update AV_SKIN set SKIN_NAME = "mgrlistitem" where SKIN_PROTOTYPE = "layout" and SKIN_NAME = "listitem";
update AV_SKIN set SKIN_NAME = "mgrlistitem" where SKIN_PROTOTYPE = "story" and SKIN_NAME = "listitem";
update AV_SKIN set SKIN_NAME = "mgrlistitem" where SKIN_PROTOTYPE = "membership" and SKIN_NAME = "preview";