I have a table (prepay_bookings) where I'm putting all the info regarding to prepay bookings and I've been using it for long time so it's quite filled...
Now I want to save the info for the pay on arrival bookings too, this data container is almost the same but without the payment data. That would be 3 or 4 fields less.
What would be the best design?
- a) Creating one new table (arrival_bookings) and use both tables
- b) Add a new field in the existing prepay_bookings called payment_mode and continue filling it but now with both types of bookings.
- c) Other?
If I use b, and I finally end with too many rows.. would this affect performance?