Merge pull request 'change "double" to "double precision" in postgres schema create' (#169) from moonman/streams:fix-item-postgres-double into dev

Reviewed-on: https://codeberg.org/streams/streams/pulls/169
This commit is contained in:
(streams) 2024-05-21 20:41:15 +00:00
commit 9a3f24a6b7

View file

@ -634,8 +634,8 @@ CREATE TABLE "item" (
"item_delayed" smallint NOT NULL DEFAULT '0',
"item_pending_remove" smallint NOT NULL DEFAULT '0',
"item_blocked" smallint NOT NULL DEFAULT '0',
"lat" double NOT NULL DEFAULT '0',
"lon" double NOT NULL DEFAULT '0',
"lat" double precision NOT NULL DEFAULT '0',
"lon" double precision NOT NULL DEFAULT '0',
"item_search_vector" tsvector,
PRIMARY KEY ("id")
);