Add `--strict` option to create tables with STRICT table mode. ``` CREATE TABLE products( id INT PRIMARY KEY, name TEXT NOT NULL, price REAL NOT NULL DEFAULT 0 ) STRICT; ``` https://www.sqlite.org/stricttables.html