properly working delete test passing 100%
This commit is contained in:
@@ -51,7 +51,7 @@ async fn existing_table(
|
|||||||
let columns = json!([
|
let columns = json!([
|
||||||
{
|
{
|
||||||
"name": "id",
|
"name": "id",
|
||||||
"type": "SERIAL",
|
"type": "BIGSERIAL",
|
||||||
"primary_key": true
|
"primary_key": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -78,7 +78,7 @@ async fn existing_table(
|
|||||||
let create_table = format!(
|
let create_table = format!(
|
||||||
r#"
|
r#"
|
||||||
CREATE TABLE "{}" (
|
CREATE TABLE "{}" (
|
||||||
id SERIAL PRIMARY KEY,
|
id BIGSERIAL PRIMARY KEY,
|
||||||
deleted BOOLEAN NOT NULL DEFAULT false
|
deleted BOOLEAN NOT NULL DEFAULT false
|
||||||
)
|
)
|
||||||
"#,
|
"#,
|
||||||
|
|||||||
Reference in New Issue
Block a user