search for: bookings_product_id_index

Displaying 1 result from an estimated 1 matches for "bookings_product_id_index".

2006 Feb 08
6
can''t get date_select to work
...e fields: CREATE TABLE `bookings` ( `id` int(11) NOT NULL auto_increment, `product_id` int(11) default NULL, `startdate` datetime default NULL, `enddate` datetime default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`), KEY `bookings_product_id_index` (`product_id`), KEY `bookings_startdate_index` (`startdate`), KEY `bookings_enddate_index` (`enddate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 (they were originally ''date'' fields, I changed them to ''datetime'' while trying to get this working). Any help...