Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Core/Resources/Db/MySQL/db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ CREATE TABLE calendarobjects (
etag VARBINARY(32),
size INT(11) UNSIGNED NOT NULL,
componenttype VARBINARY(8),
firstoccurence INT(11) UNSIGNED,
lastoccurence INT(11) UNSIGNED,
firstoccurence INT(11),
lastoccurence INT(11),
uid VARBINARY(200),
UNIQUE(calendarid, uri)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Expand Down
4 changes: 2 additions & 2 deletions Core/Resources/Db/PgSQL/db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ CREATE TABLE calendarobjects (
etag TEXT,
size INT CHECK (size > 0) NOT NULL,
componenttype TEXT,
firstoccurence INT CHECK (firstoccurence > 0),
lastoccurence INT CHECK (lastoccurence > 0),
firstoccurence INT,
lastoccurence INT,
uid TEXT
);

Expand Down
Loading