diff options
Diffstat (limited to 'shared/classes/gentoo_baseinit.php')
-rw-r--r-- | shared/classes/gentoo_baseinit.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/shared/classes/gentoo_baseinit.php b/shared/classes/gentoo_baseinit.php new file mode 100644 index 0000000..d685635 --- /dev/null +++ b/shared/classes/gentoo_baseinit.php @@ -0,0 +1,23 @@ +<?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 + ), + 'name' => array ( + 'type' => 'VARCHAR', + 'length' => 255, + 'not_null' => true + ), + 'runlevel' => array ( + 'type' => 'VARCHAR', + 'length' => 255, + 'not_null' => true + ) + + ); +} +?> |