Skip to content

Commit 610f16a

Browse files
committed
Updated for syntax fix
1 parent 2b81bc9 commit 610f16a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ public class AlbumItem extends DBItem {
115115
"CREATE TABLE Album"
116116
+" (_id INTEGER PRIMARY KEY,"
117117
+" albumname TEXT NOT NULL DEFAULT '',"
118-
+" artistname TEXT NOT NULL"
118+
+" artistname TEXT NOT NULL",
119119
+""
120120
+" FOREIGN KEY (artistname) REFERENCES artist(name) ON DELETE CASCADE,"
121-
+" UNIQUE(albumname) ON CONFLICT REPLACE)";
121+
+" UNIQUE (albumname) ON CONFLICT REPLACE)";
122122
}
123123
```
124124

0 commit comments

Comments
 (0)