Change file_data column type from JSON to JSONB

This commit is contained in:
D. Berge
2020-10-04 01:22:42 +02:00
parent a101542bc2
commit 2d270cdef9

View File

@@ -701,7 +701,7 @@ ALTER SEQUENCE _SURVEY__TEMPLATE_.events_timed_id_seq OWNED BY _SURVEY__TEMPLATE
CREATE TABLE _SURVEY__TEMPLATE_.file_data (
hash text NOT NULL,
data json NOT NULL
data jsonb NOT NULL
);