aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-11-03 18:19:07 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-11-03 18:19:07 -0700
commit2004d5ea148b8b21cd0cffeb82fd8f07f52d1ba7 (patch)
tree5c0d63cc268b8015c9812ed7572a429308d616f2
parent00b17ca17ea0d9503aab3175732977a2119962b9 (diff)
downloadadenosine-2004d5ea148b8b21cd0cffeb82fd8f07f52d1ba7.tar.gz
adenosine-2004d5ea148b8b21cd0cffeb82fd8f07f52d1ba7.zip
pds schema: fix SQL trailing comma
-rw-r--r--adenosine-pds/src/atp_db.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/adenosine-pds/src/atp_db.sql b/adenosine-pds/src/atp_db.sql
index 259ab9d..350c9ef 100644
--- a/adenosine-pds/src/atp_db.sql
+++ b/adenosine-pds/src/atp_db.sql
@@ -78,5 +78,5 @@ CREATE TABLE bsky_notification(
subject_cid TEXT NOT NULL,
reason TEXT NOT NULL,
seen_at TIMESTAMP WITH TIME ZONE,
- indexed_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT ( DATETIME('now') ),
+ indexed_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT ( DATETIME('now') )
);