i need help with the following scenario:
I have a main record table that has 2 forms -- intake and discharge
(reconsidering whether this is in fact 2 different tables).
There are some fields that need to be collected both at intake and
discharge.
right now table_b is
<table name="table_b" skipSql="null" abstract="null">
<column name="id" autoIncrement="true" type="INTEGER"
required="true" primaryKey="true" autoincrement="true" />
<column name="consumer_id" type="INTEGER" />
<foreign-key foreignTable="Consumer">
<reference local="consumer_id" foreign="id" />
</foreign-key>
<column name="ssi" type="BOOLEAN" />
...
<column name="action_type" type="INTEGER" />
</table>
so, my getter and setter need to include the status_id (ie intake or
discharge)
does this make sense?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---