aboutsummaryrefslogtreecommitdiff
path: root/tests/_data
diff options
context:
space:
mode:
authorElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2021-08-05 12:13:56 +0200
committerElmar Ludwig <elmar.ludwig@uni-osnabrueck.de>2021-08-05 12:13:56 +0200
commit2cc8b70e0d8c8acddbb9561a53505531a6607c96 (patch)
treecdd68bfb6f88ac92684b49aa08db64cce0ba31f5 /tests/_data
parent402abeae7e0957f2dfaebca643a426a21a42abbb (diff)
fix tests in CI, fixes #42
Diffstat (limited to 'tests/_data')
-rw-r--r--tests/_data/simpleormap/cronjobs_tasks.php75
1 files changed, 75 insertions, 0 deletions
diff --git a/tests/_data/simpleormap/cronjobs_tasks.php b/tests/_data/simpleormap/cronjobs_tasks.php
new file mode 100644
index 0000000..43614b6
--- /dev/null
+++ b/tests/_data/simpleormap/cronjobs_tasks.php
@@ -0,0 +1,75 @@
+<?php
+$result = [
+ 0 =>
+ [
+ 'name' => 'task_id',
+ 'type' => 'char(32)',
+ 'null' => 'NO',
+ 'key' => 'PRI',
+ 'default' => '',
+ 'extra' => '',
+ ],
+ 1 =>
+ [
+ 'name' => 'filename',
+ 'type' => 'varchar(255)',
+ 'null' => 'NO',
+ 'key' => '',
+ 'default' => '',
+ 'extra' => '',
+ ],
+ 2 =>
+ [
+ 'name' => 'class',
+ 'type' => 'varchar(255)',
+ 'null' => 'NO',
+ 'key' => '',
+ 'default' => '',
+ 'extra' => '',
+ ],
+ 3 =>
+ [
+ 'name' => 'active',
+ 'type' => 'tinyint(1) unsigned',
+ 'null' => 'NO',
+ 'key' => '',
+ 'default' => 0,
+ 'extra' => '',
+ ],
+ 4 =>
+ [
+ 'name' => 'execution_count',
+ 'type' => 'bigint(20) unsigned',
+ 'null' => 'NO',
+ 'key' => '',
+ 'default' => 0,
+ 'extra' => '',
+ ],
+ 5 =>
+ [
+ 'name' => 'assigned_count',
+ 'type' => 'int(11) unsigned',
+ 'null' => 'NO',
+ 'key' => '',
+ 'default' => 0,
+ 'extra' => '',
+ ],
+ 6 =>
+ [
+ 'name' => 'mkdate',
+ 'type' => 'int(11) unsigned',
+ 'null' => 'YES',
+ 'key' => '',
+ 'default' => NULL,
+ 'extra' => '',
+ ],
+ 7 =>
+ [
+ 'name' => 'chdate',
+ 'type' => 'int(11) unsigned',
+ 'null' => 'YES',
+ 'key' => '',
+ 'default' => NULL,
+ 'extra' => '',
+ ],
+];