Skip to content

Commit 74693a8

Browse files
committed
remove unecesary hash
1 parent a17539c commit 74693a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

relay-backend-postgres/src/migrations.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ pub(crate) async fn run_migrations(
2222

2323
transaction
2424
.batch_execute(&format!(
25-
r#"
25+
r"
2626
SELECT pg_advisory_xact_lock(13);
2727
CREATE TABLE IF NOT EXISTS {table_name} (
2828
name varchar NOT NULL,
2929
applied_at timestamp without time zone NOT NULL,
3030
PRIMARY KEY (name)
3131
);
32-
"#
32+
"
3333
))
3434
.await?;
3535

0 commit comments

Comments
 (0)