summaryrefslogtreecommitdiff
blob: 5f78aab93118dd69135f8f49adfdc3a403d0a14b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
class sql_commandlog_entry extends sql_row_obj {
	protected $table='commandlogs', $columns=array(
		'task' => array (
			'type' => 'INT',
			'length' => 10,
			'unsigned' => true,
			'not_null' => true,
			'default' => 0
		),
		'order' => array (
			'type' => 'INT',
			'length' => 10,
			'unsigned' => true,
			'not_null' => true,
			'default' => 0
		),
		'timestamp' => array (
			'type' => 'INT',
			'length' => 10,
			'unsigned' => true,
			'not_null' => true,
			'default' => 0
		),
		'stream' => array (
			'type' => 'ENUM',
			'length' => '\'stdout\',\'stderr\',\'system\'',
			'not_null' => true
		),
		'text' => array (
			'type' => 'TEXT',
			'not_null' => true
		)

	);
}
?>