| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "units".
- *
- * @property integer $id
- * @property string $name
- */
- class Units extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'units';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['name'], 'required'],
- [['name'], 'string', 'max' => 255],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => Yii::t('app', 'ID'),
- 'name' => Yii::t('app', 'Name'),
- ];
- }
- }
|