I can't figure out how to tell CCK to create a separate table for my fields with multiple values. I've noticed it sets db_storage to 0 for my multiple value fields in node_field_instance, but I'm afraid to muck around with this. Does anyone know how to safely set up a table, e.g. content_field_X, for a field w/ more than one possible value?
Comments
Comment #1
yched commentedI'm afraid to muck around with this
And rightly so. Just don't.
CCK handles the db layout itself, depending on your field's settings. You should *really* not try to interfere with this :-).
Multiple fields, and fields that are used in more than one content type, have a dedicated table. Others are grouped in a per-content-type table.
So you shouldn't have to 'CCK to create a separate table for my fields with multiple values', it should be the case no matter what.
And db_storage = 0 means 'stored in its own table', BTW.