summaryrefslogtreecommitdiff
blob: d61b3dc07618f47558a1d364c1595ddd5fdeedb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
class sql_gentoo_basepkg extends sql_row_obj {
	protected $table='gentoo_basepkgs', $columns=array(
		'profile' => array (
			'type' => 'TINYINT',
			'length' => 3,
			'unsigned' => true,
			'not_null' => true,
			'default' => 0,
			'refers_to' => 'gentoo_profiles.id'
		),
		'pkg' => array (
			'type' => 'VARCHAR',
			'length' => 255,
			'not_null' => true,
			'default' => ''
		)

	);
}
?>