umbalaconmeogia / yii2-batsg
My best practice and my libraries when using yii2 framework.
Installs: 4 358
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 1
Type:yii2-extension
Requires
- dev-master
- v0.7.5
- v0.7.4
- v0.7.3
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.9
- v0.6.8
- v0.6.7
- v0.6.6
- v0.6.5
- v0.6.4
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.9
- v0.5.8
- v0.5.7
- v0.5.6
- v0.5.5
- v0.5.4
- v0.5.3
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.9
- v0.4.8
- v0.4.7
- v0.4.6
- v0.4.5
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.9
- v0.3.8
- v0.3.7
- v0.3.6
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.9
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1
This package is auto-updated.
Last update: 2025-04-16 03:36:23 UTC
README
My style, my best practice and my libraries when using yii2 framework.
Overview
- Convention when designing database.
- gii modification
Convention when designing database
- All DB table should contain following columns.
Column name | Data type | Description |
---|---|---|
id | serial | primary key |
data_status | int | 1: new, 2: updated, 9: deleted |
created_by | int | Create user id. Set automatically. |
created_at | int | Created timestamp. Set automatically. |
updated_by | int | Update user id. Set automatically. |
updated_at | int | Updated timestamp. Set automatically. |
Install yii2-batsg into your project.
composer require umbalaconmeogia/yii2-batsg
Explanation about composer require
, update
and install
command | change composer.json | change composer.lock |
---|---|---|
require | Y | Y |
update | N | Y |
install | N | N |
- require:
composer require umbalaconmeogia/yii2-batsg
This will update or install the newest version.composer.json
andcomposer.lock
will be updated as well. - update:
composer update umbalaconmeogia/yii2-batsg
This will update the package with the highest version respects to yourcomposer.json
. The entry incomposer.lock
will be updated. - install:
composer install umbalaconmeogia/yii2-batsg
This will install version specified in the lock file