Run the following SQL, noting the `UNIQUE`: ```sql CREATE TABLE example_gid_counts ( gid TEXT UNIQUE NOT NULL, row_count INTEGER NOT NULL ); ``` Then run .dump: ```sql CREATE TABLE example_gid_counts ( gid TEXT UNIQUE NOT NULL, row_count INTEGER NOT NULL ); NULL ``` Note the extra trailing `NULL` in the output, which causes problems when loaded back into a database. Without `UNIQUE` it works as expected: ```sql CREATE TABLE example_gid_counts ( gid TEXT NOT NULL, row_count INTEGER NOT NULL ); ``` .dump: ``` CREATE TABLE example_gid_counts ( gid TEXT NOT NULL, row_count INTEGER NOT NULL ); ```