Skip to content

Commit

Permalink
Fix pgmq.meta not having is_unlogged for extensionless (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
v0idpwn authored Sep 27, 2023
1 parent d874a49 commit e5874b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgmq-core"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
authors = ["Tembo.io"]
description = "Core functionality shared between the PGMQ Rust SDK and Postgres Extension"
Expand Down
1 change: 1 addition & 0 deletions core/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ pub fn create_meta() -> String {
CREATE TABLE IF NOT EXISTS {PGMQ_SCHEMA}.meta (
queue_name VARCHAR UNIQUE NOT NULL,
is_partitioned BOOLEAN NOT NULL,
is_unlogged BOOLEAN NOT NULL,
created_at TIMESTAMP WITH TIME ZONE DEFAULT now() NOT NULL
);
"
Expand Down

0 comments on commit e5874b4

Please sign in to comment.