-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Sqlite3] Fixed. panic: interface conversion when to column is nil
``` sqlite> .schema album_genres CREATE TABLE album_genres ( album_id varchar default null not null references album on delete cascade, genre_id varchar default null not null references genre on delete cascade, constraint album_genre_ux unique (album_id, genre_id) ); sqlite> PRAGMA foreign_key_list(album_genres) ; id = 0 seq = 0 table = genre from = genre_id to = on_update = NO ACTION on_delete = CASCADE match = NONE id = 1 seq = 0 table = album from = album_id to = on_update = NO ACTION on_delete = CASCADE match = NONE ``` Close #210
- Loading branch information
Showing
2 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters