Answer the question
In order to leave comments, you need to log in
Creating relationships in Laravel via table?
There are 2 tables of the form:
CREATE TABLE events (
id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
title varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (id)
)
CREATE TABLE objects(
id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
title varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (id)
)
CREATE TABLE object_to_events (
id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
eventId bigint(20) UNSIGNED NOT NULL,
objectId bigint(20) UNSIGNED NOT NULL,
PRIMARY KEY (id)
)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question