mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 12:11:18 +00:00
35 lines
914 B
Text
35 lines
914 B
Text
|
{
|
||
|
attributes = (
|
||
|
{
|
||
|
allowsNull = Y;
|
||
|
columnName = FNAME;
|
||
|
externalType = varchar;
|
||
|
name = firstName;
|
||
|
valueClassName = NSString;
|
||
|
width = 30;
|
||
|
},
|
||
|
{
|
||
|
allowsNull = Y;
|
||
|
columnName = LNAME;
|
||
|
externalType = varchar;
|
||
|
name = lastName;
|
||
|
valueClassName = NSString;
|
||
|
width = 30;
|
||
|
},
|
||
|
{
|
||
|
columnName = PID;
|
||
|
externalType = integer;
|
||
|
name = pid;
|
||
|
valueClassName = NSNumber;
|
||
|
valueType = i;
|
||
|
}
|
||
|
);
|
||
|
attributesUsedForLocking = (pid, firstName, lastName);
|
||
|
className = EOGenericRecord;
|
||
|
classProperties = (firstName, lastName);
|
||
|
externalName = BSCUSTOMER;
|
||
|
fetchSpecificationDictionary = {};
|
||
|
name = Customer;
|
||
|
primaryKeyAttributes = (pid);
|
||
|
}
|