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