properly working delete test passing 100%

This commit is contained in:
filipriec
2025-03-04 19:34:49 +01:00
parent ec168156f8
commit 42b97c9bff

View File

@@ -51,7 +51,7 @@ async fn existing_table(
let columns = json!([
{
"name": "id",
"type": "SERIAL",
"type": "BIGSERIAL",
"primary_key": true
},
{
@@ -78,7 +78,7 @@ async fn existing_table(
let create_table = format!(
r#"
CREATE TABLE "{}" (
id SERIAL PRIMARY KEY,
id BIGSERIAL PRIMARY KEY,
deleted BOOLEAN NOT NULL DEFAULT false
)
"#,