Add extra column/field to RavenDB collection via RQL in Raven Studio

Viewed 204

I'm trying to update the entire collection by adding an extra field to each entity. This doesn't do the trick:

from things 
as t
update 
{
    put( id(t), "NewField");
}

Can someone help out with the syntax please ?

Thanks !

1 Answers
Related