]> source.dussan.org Git - nextcloud-server.git/commitdiff
move some documentation to the right place
authorGeorg Ehrke <dev@georgswebsite.de>
Wed, 27 Jun 2012 19:05:46 +0000 (21:05 +0200)
committerGeorg Ehrke <dev@georgswebsite.de>
Wed, 27 Jun 2012 19:05:46 +0000 (21:05 +0200)
apps/calendar/lib/calendar.php
apps/calendar/lib/object.php

index 521bf944d9189ba07ff85b63e52910df4f230d5c..5274397c7630789ec06b292b2c6b878d38565b64 100644 (file)
  * The following SQL statement is just a help for developers and will not be
  * executed!
  *
- * CREATE TABLE calendar_objects (
- *     id INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
- *     calendarid INTEGER UNSIGNED NOT NULL,
- *     objecttype VARCHAR(40) NOT NULL,
- *     startdate DATETIME,
- *     enddate DATETIME,
- *     repeating INT(1),
- *     summary VARCHAR(255),
- *     calendardata TEXT,
- *     uri VARCHAR(100),
- *     lastmodified INT(11)
- * );
- *
  * CREATE TABLE calendar_calendars (
  *     id INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
  *     userid VARCHAR(255),
@@ -35,6 +22,7 @@
  *     timezone TEXT,
  *     components VARCHAR(20)
  * );
+ *
  */
 
 /**
index 0531a56fc5017dc417e546ac30fdd74ffa7d0025..5d475c8943465847d4dbdd9a50fb591d7099ae03 100644 (file)
@@ -5,6 +5,25 @@
  * later.
  * See the COPYING-README file.
  */
+ /*
+ *
+ * The following SQL statement is just a help for developers and will not be
+ * executed!
+ *
+ * CREATE TABLE calendar_objects (
+ *     id INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
+ *     calendarid INTEGER UNSIGNED NOT NULL,
+ *     objecttype VARCHAR(40) NOT NULL,
+ *     startdate DATETIME,
+ *     enddate DATETIME,
+ *     repeating INT(1),
+ *     summary VARCHAR(255),
+ *     calendardata TEXT,
+ *     uri VARCHAR(100),
+ *     lastmodified INT(11)
+ * );
+ *
+ */
 
 /**
  * This class manages our calendar objects