diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-23 22:32:46 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-23 22:32:46 -0700 |
commit | 0f3c2c4b2448694da4f0b350c1814fb5df973ce9 (patch) | |
tree | d6e6efd2cdb2aa3aabebf7221697c89622c67d55 /install/schema_postgres.sql | |
parent | b553ffd55d04d11c0802b1688d74e96f3ed01ddf (diff) | |
download | volse-hubzilla-0f3c2c4b2448694da4f0b350c1814fb5df973ce9.tar.gz volse-hubzilla-0f3c2c4b2448694da4f0b350c1814fb5df973ce9.tar.bz2 volse-hubzilla-0f3c2c4b2448694da4f0b350c1814fb5df973ce9.zip |
add vdata field for caldav
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r-- | install/schema_postgres.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 26d7d79a3..6145e9ccb 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -392,6 +392,7 @@ CREATE TABLE "event" ( "event_repeat" text NOT NULL, "event_sequence" smallint NOT NULL DEFAULT '0', "event_priority" smallint NOT NULL DEFAULT '0', + "event_vdata" text NOT NULL, PRIMARY KEY ("id") ); create index "event_uid_idx" on event ("uid"); |