gdritter repos electric-boogaloo / c87e702
Updated docs for IF NOT EXISTS contraint Getty Ritter 7 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Collapse all Expand all
5959 Produces the following SQLite table declarations:
6060
6161 ~~~.sql
62 CREATE TABLE books
62 CREATE TABLE IF NOT EXISTS books
6363 ( id INTEGER PRIMARY KEY ASC
6464 , title TEXT NOT NULL UNIQUE
6565 , pages INT NOT NULL DEFAULT 0
6767 , published DATE NOT NULL
6868 , FOREIGN KEY(author_name) REFERENCES authors(id)
6969 );
70 CREATE TABLE authors
70 CREATE TABLE IF NOT EXISTS authors
7171 ( id INTEGER PRIMARY KEY ASC
7272 , name TEXT NOT NULL
7373 , gender BLOB