tripfab / TripFab

The TripFab application
tripfab.com
GNU General Public License v2.0
1 stars 2 forks source link

Trips: Category should have multiple options to click on . #518

Closed sobrado closed 12 years ago

sobrado commented 12 years ago

On trips the "category" oprtion right now consists on a drop down menu so you can only choose one option. It has to be changed to a multiple option click box.

caraya0789 commented 12 years ago

@nilay please give priority to this one. We will need to create a join table. Many to many trips can have many categoryes and categories can be assigned to many different trips

nilay commented 12 years ago

Following SQL need to be executed on database:

CREATE TABLE trip_tripcategories ( trip_id INT(11) NOT NULL, category_id INT(11) NOT NULL, PRIMARY KEY (trip_id,category_id) ) ENGINE=INNODB DEFAULT CHARSET=latin1

caraya0789 commented 12 years ago

@sobrado done please check it out

sobrado commented 12 years ago

will do! please add gay-friendly , golf, sports fishing, scuba diving, and luxury

caraya0789 commented 12 years ago

Added to database