summaryrefslogtreecommitdiff
blob: 824d4955885b2a16e6b7f37c4ab214d442a53ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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,
			'comment' => 'refers to:gentoo_profiles.id'
		),
		'pkg' => array (
			'type' => 'VARCHAR',
			'length' => 255,
			'not_null' => true
		)

	);
}
?>