Skip to content
Snippets Groups Projects
Commit fcd5655f authored by Sorrel Harriet's avatar Sorrel Harriet
Browse files

minor amend

parent 3d4d0e60
Branches
No related merge requests found
......@@ -10,8 +10,9 @@ CREATE TABLE Genre (
);
/* Define table for storing act (i.e. a group or solo artist)
ON DELETE CASCADE not needed in this
case as a Band does not HAVE to have an associated genre */
ON DELETE CASCADE not used in this case as we don't want bands
being deleted if their genre is deleted. We'd rather an error
was raised. */
CREATE TABLE Band (
id INT AUTO_INCREMENT,
name VARCHAR(50) NOT NULL,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment