mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
0bc0a09bf4
- application/extensions file system permission now is 775 - application/logs file system permission now is 775 - Added extensions directory in application/: config, controllers, helpers, hooks, libraries, models, views and widgets - Added view views/extensions/manage.php - Added controller controllers/system/extensions/Manager.php - Added library ExtensionsLib to manage extensions - Added model models/system/Extensions_model.php - Moved code related to print out info from MigrationLib to EPrintfLib
27 lines
536 B
SQL
27 lines
536 B
SQL
CREATE TABLE calendarobjects (
|
|
id integer primary key asc,
|
|
calendardata blob,
|
|
uri text,
|
|
calendarid integer,
|
|
lastmodified integer,
|
|
etag text,
|
|
size integer,
|
|
componenttype text,
|
|
firstoccurence integer,
|
|
lastoccurence integer
|
|
);
|
|
|
|
CREATE TABLE calendars (
|
|
id integer primary key asc,
|
|
principaluri text,
|
|
displayname text,
|
|
uri text,
|
|
ctag integer,
|
|
description text,
|
|
calendarorder integer,
|
|
calendarcolor text,
|
|
timezone text,
|
|
components text,
|
|
transparent bool
|
|
);
|