Open napoleon101392 opened 6 years ago
attaching many to many rel doesnt have prefix on the query executed
executed: insert into user_post (user_id, post_id) values (7, 42) expectation: insert into prefix_user_post (user_id, post_id) values (7, 42)
user_post
user_id
post_id
prefix_user_post
Is your user post model's getTable method correctly defined?
attaching many to many rel doesnt have prefix on the query executed
executed: insert into
user_post
(user_id
,post_id
) values (7, 42) expectation: insert intoprefix_user_post
(user_id
,post_id
) values (7, 42)