Hello all,
I’m creating a many-many join table between ‘homes’ and ‘users’. Can it
contain created_on? will AR update created_on, updated_on on this
table?
CREATE homes_users (
home_id int not null,
user_id int not null,
created_on datetime null,
updated_on datetime null
)
Thanks for your advice!