gozoro / yii2-toolbox
Additional classes for project development.
Installs: 207
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.5.9
- blueimp/jquery-file-upload: ~10.31.0
- bower-asset/bootstrap-datepicker: ^1.7
- bower-asset/jquery: ~1.12
- gozoro/bootstrap-sidebar: ~1.0.0
- gozoro/bootstrap3-plus: ~0.0.1
- gozoro/jquery-ajaxform: ~1.0.0
- gozoro/yii2-helpers: ~1.0.0
- gozoro/yii2-rbac-console: ~1.0.0
- gozoro/yii2-widgets: ~1.0.0
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-03-07 15:23:31 UTC
README
Collection classes and helpers for yii2 project.
THIS PACKAGE IS DEPRECATED.
Usage models/File
Create table
CREATE TABLE IF NOT EXISTS `files` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `hash` varchar(32) NOT NULL, `mime` varchar(128) NOT NULL, `size` int(11) NOT NULL, `uploadDate` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;