Displaying 1 result from an estimated 1 matches for "generalset".
Did you mean:
generalised
2006 Jan 06
3
Single table inheritance - HowTo?
Hi,
As per another member''s suggestion, I''m trying to user STI. So I have
this table:
CREATE TABLE `settings` (
`id` int(11) unsigned NOT NULL auto_increment,
`type` char(40) NOT NULL default ''General'',
`name` char(40) NOT NULL default '''',
`value` char(128) NOT NULL default '''',
`updated_on` datetime default NULL,