jamband / yii2-ensure-unique-behavior
This extension insert unique identifier automatically for the Yii 2 framework
Installs: 6 300
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 3
Open Issues: 0
Type:yii2-extension
README
Insert unique identifier automatically for the Yii 2 framework.
Requirements
- PHP 7.4 or later
- Yii 2.x
Installation
composer require jamband/yii2-ensure-unique-behavior
Examples
Creates a post table:
CREATE TABLE `post` ( `id` CHAR(11) COLLATE utf8_bin NOT NULL, `title` VARCHAR(255) NOT NULL, `content` TEXT NOT NULL, `created_at` INT(11) NOT NULL, `updated_at` INT(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARACTER SET=utf8 COLLATE=utf8_unicode_ci;
Settings EnsureUniqueBehavior in Model:
namespace app\models; use jamband\behaviors\EnsureUniqueBehavior; use yii\behaviors\TimestampBehavior; use yii\db\ActiveRecord; class Post extends ActiveRecord { public function behaviors() { return [ TimestampBehavior::class, [ 'class' => EnsureUniqueBehavior::class, 'attribute' => 'id', // default 'length' => 11, // default ], ]; } }
And saves a new model:
$model = new \app\models\Post(); $model->title = 'title'; $model->content = 'content'; $model->save(); // This value is eusure uniqueness var_dump($model->id); // string(11) "-ZRLSS-4vl_"
License
This extension is licensed under the MIT license.