I have a site setup and would like to maintain the db structure. Oil seems to be able to create the scaffolding from the db, but I have join tables that dont seem to be created correctly and neither are the relationships.
I have table: car (id, name) and a table: features (id, feature) . Then I have a join table: car_features (id, car_id, feature_id) . The tables are innodb and have the FKs set up on them for data integrity.
When I did: oil r fromdb:scaffold car, features, car_features, I just got three new models, crontrollers, etc. The models and insert pages dont have the ability to add features to a car.
What did I miss, or is this even possible for Oil?