added content prototypes

This commit is contained in:
JT Smith 2005-03-06 16:21:20 +00:00
parent 25b7e89b0c
commit 7446031b99
6 changed files with 80 additions and 12 deletions

View file

@ -1,6 +1,10 @@
6.5.0
- Added content prototypes.
- Fixed a bug in the Collaboration post where the post end date was set to
the start date.
- fix [ 1157202 ] users can add themselves to Admins group
- fix [ 1157218 ] user cannot view it's own profile
6.4.0
- You can now see the groups of groups hierarchy in the group manager.

View file

@ -0,0 +1,4 @@
insert into webguiVersion values ('6.5.0','upgrade',unix_timestamp());
alter table asset add column isPrototype int not null default 0;
alter table asset add index isPrototype_className_assetId (isPrototype,className,assetId);