<?php
require_once 'diy-blog/model/User.php';
require_once 'diy-blog/model/om/BaseUser.php';
/**
* Skeleton subclass for representing a row from one of the subclasses of the 'User' table.
*
*
*
* This class was autogenerated by Propel on:
*
* 09/25/07 19:31:43
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
* @package diy-blog.model
*/
class AdminUser extends User {
/**
* Constructs a new AdminUser class, setting the Type column to UserPeer::CLASSKEY_ADMINUSER.
*/
public function __construct()
{
$this->setType(UserPeer::CLASSKEY_ADMINUSER);
}
} // AdminUser