properly working delete test passing 100%
This commit is contained in:
@@ -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
|
||||
)
|
||||
"#,
|
||||
|
||||
Reference in New Issue
Block a user