Skip to content

Commit

Permalink
Update fixtures according to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Jan 3, 2024
1 parent 0992809 commit 7313f6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Support/Fixture/sqlite.sql
Original file line number Diff line number Diff line change
Expand Up @@ -120,18 +120,18 @@ CREATE TABLE "negative_default_values" (

CREATE TABLE "type" (
int_col INTEGER NOT NULL,
float_col double(4,3) NOT NULL,
char_col char(100) NOT NULL,
bool_col tinyint(1) NOT NULL,
int_col2 INTEGER DEFAULT '1',
tinyint_col TINYINT(3) DEFAULT '1',
smallint_col SMALLINT(1) DEFAULT '1',
char_col char(100) NOT NULL,
char_col2 varchar(100) DEFAULT 'something"',
char_col3 text,
float_col double(4,3) NOT NULL,
float_col2 double DEFAULT '1.23',
blob_col blob,
numeric_col decimal(5,2) DEFAULT '33.22',
timestamp_col timestamp NOT NULL DEFAULT '2002-01-01 00:00:00',
bool_col tinyint(1) NOT NULL,
bool_col2 tinyint(1) DEFAULT '1',
ts_default TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
bit_col BIT(8) NOT NULL DEFAULT 130, -- 0b1000_0010
Expand Down

0 comments on commit 7313f6a

Please sign in to comment.