You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
namespace common\models;
use Yii;
/** * This is the model class for table "cat". * * @property int $id * @property string $cat_name * @property string $icon * @property int $icon_type * @property string $description * @property int $sort_order * @property int $created_at * @property int $updated_at */ class Cat extends \yii\db\ActiveRecord { /** * {@inheritdoc} */ public static function tableName() { return 'cat'; }
/** * {@inheritdoc} */ public function rules() { return [ [['cat_name'], 'required'], [['icon_type', 'sort_order', 'created_at', 'updated_at'], 'integer'], [['description'], 'string'], [['cat_name', 'icon'], 'string', 'max' => 64], ]; }
/** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'cat_name' => 'Cat Name', 'icon' => 'Icon', 'icon_type' => 'Icon Type', 'description' => 'Description', 'sort_order' => 'Sort Order', 'created_at' => 'Created At', 'updated_at' => 'Updated At', ]; } }
|