It is necessary to write a bulletin board with the division of ads by category (the ad can be in different categories at the same time). Ads must have several statuses (moderation / approved / rejected), only the administrator can change the status.
Tell me what fields in the model do I need to create for the ad table and categories? And how do I tie them together?
Thankful in advance for the help.
You need to have a JOINS table, to link the two tables. By rails convention, this will be called
adverts_categories
(but it's easy to override if preferred).The database migrations to create these tables could, for example, be: