Defaults
CREATE TABLE users (
name TEXT,
login_count INTEGER NOT NULL DEFAULT 0
);
- the type (
INTEGER
) in this case always has to come after the column name. The rest of the properties can be ordered freely
Search
CREATE TABLE users (
name TEXT,
login_count INTEGER NOT NULL DEFAULT 0
);
INTEGER
) in this case always has to come after the column name. The rest of the properties can be ordered freely