-
Notifications
You must be signed in to change notification settings - Fork 1
Rows
Yoann Fuks edited this page Oct 31, 2018
·
1 revision
ROWS seems like a reserved word so we put it under ``
`ROWS`
(
ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
clusterID INT,
name VARCHAR(50),
number INT,
updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (clusterID) REFERENCES CLUSTERS(ID)
) ENGINE = InnoDB;