events_tags now jsonb (was json)
This commit is contained in:
parent
ad965fffee
commit
f94740c1cf
1 changed files with 4 additions and 4 deletions
|
@ -91,14 +91,14 @@ SET default_with_oids = false;
|
|||
--
|
||||
|
||||
CREATE TABLE events (
|
||||
events_what text,
|
||||
events_type text,
|
||||
events_tags json,
|
||||
events_id uuid DEFAULT uuid_generate_v4(),
|
||||
createdate timestamp without time zone DEFAULT now(),
|
||||
lastupdate timestamp without time zone,
|
||||
events_type text,
|
||||
events_what text,
|
||||
events_when tstzrange,
|
||||
events_geo text,
|
||||
events_when tstzrange
|
||||
events_tags jsonb
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue