-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
395 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
version: "3" | ||
|
||
vars: | ||
VERSION: 0.3.1 | ||
VERSION: 0.3.2 | ||
|
||
interval: 200ms | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
CREATE TABLE | ||
nullableTestTable (id integer primary key, myBool boolean) strict; | ||
CREATE TABLE nullableTestTable (id integer PRIMARY KEY, myBool boolean) strict; | ||
|
||
CREATE TABLE NAMES ( | ||
id integer PRIMARY KEY, | ||
name text NOT NULL UNIQUE | ||
); | ||
|
||
CREATE TABLE authors ( | ||
id integer PRIMARY KEY, | ||
first_name_id integer NOT NULL, | ||
last_name_id integer NOT NULL, | ||
FOREIGN KEY (first_name_id) REFERENCES NAMES(id), | ||
FOREIGN KEY (last_name_id) REFERENCES NAMES(id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.