initial check-in
This commit is contained in:
parent
efc302e658
commit
666a8734ac
19 changed files with 275 additions and 0 deletions
14
db/patches/antville_dbpatch-20031128-layouts2.sql
Normal file
14
db/patches/antville_dbpatch-20031128-layouts2.sql
Normal 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";
|
Loading…
Add table
Add a link
Reference in a new issue