summaryrefslogtreecommitdiff
blob: 03c9569fe04615f96f202a6e3c5ebeeb52eb1bf9 (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
<?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' => ''
		)
	);
}
?>