We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b81bc9 commit 610f16aCopy full SHA for 610f16a
1 file changed
README.md
@@ -115,10 +115,10 @@ public class AlbumItem extends DBItem {
115
"CREATE TABLE Album"
116
+" (_id INTEGER PRIMARY KEY,"
117
+" albumname TEXT NOT NULL DEFAULT '',"
118
-+" artistname TEXT NOT NULL"
++" artistname TEXT NOT NULL",
119
+""
120
+" FOREIGN KEY (artistname) REFERENCES artist(name) ON DELETE CASCADE,"
121
-+" UNIQUE(albumname) ON CONFLICT REPLACE)";
++" UNIQUE (albumname) ON CONFLICT REPLACE)";
122
}
123
```
124
0 commit comments