blob: 01b5dc5057e6baa6a38e186420d8aeb7e207ee72 (
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
|
<?php
class sql_gentoo_baseinit extends sql_row_obj {
protected $table='gentoo_baseinit', $columns=array(
'profile' => array (
'type' => 'TINYINT',
'length' => 3,
'unsigned' => true,
'not_null' => true,
'default' => 0
),
'name' => array (
'type' => 'VARCHAR',
'length' => 255,
'not_null' => true,
'default' => ''
),
'runlevel' => array (
'type' => 'VARCHAR',
'length' => 255,
'not_null' => true,
'default' => ''
)
);
}
?>
|