Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinzenz Rosenkranz <vinzenz.rosenkranz@gmail.com>2016-02-20 19:15:07 +0300
committerVinzenz Rosenkranz <vinzenz.rosenkranz@gmail.com>2016-02-20 19:15:07 +0300
commitc3f94802f28f8b44335eb9d3067c6dc0de9f51e0 (patch)
tree95d52bcb317ad3ad1a673ae77719d8d4ad1984d4 /db/date.php
parent28fa26961991fa01736fcb8d226c3203f6b5a6a5 (diff)
initial commit0.6.0
Diffstat (limited to 'db/date.php')
-rw-r--r--db/date.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/date.php b/db/date.php
new file mode 100644
index 00000000..c5bad99b
--- /dev/null
+++ b/db/date.php
@@ -0,0 +1,15 @@
+<?php
+namespace OCA\Polls\Db;
+
+use OCP\AppFramework\Db\Entity;
+
+/**
+ * @method timestamp getDt()
+ * @method void setDt(timestamp $value)
+ * @method integer getPollId()
+ * @method void setPollId(integer $value
+ */
+class Date extends Entity {
+ public $dt;
+ public $pollId;
+}