There are 3 tables:
parsers
parsers -id -name -created_at parsers_settings
parsers_settings -id -parser_id -some_config_field and for example amazon_parser_products
amazon_parser_products -id -amazon_product_id -name I need to somehow save information about the execution of each parser and link the products from the table "amazon_parser_products" to the execution in order to know when and at what execution the products were added from the parser. There is an option to add a table
parsers_executions -id -status -finished_at And then amazon_parser_products add another field
amazon_parser_products -id -execution_id -amazon_product_id -name Norm so do? or are there better options?