TorrinLynn

Results 2 comments of TorrinLynn

Also found that capitalizing the table name for update queries causes an error: ``` -- name: UpdateAuthor :exec UPDATE Authors set name = ?, bio = ? WHERE id =...

Using Alter Table with rename is also case sensitive. ``` CREATE TABLE authors ( id INTEGER PRIMARY KEY, name text NOT NULL ); DROP TABLE authors; CREATE TABLE authors_new (...