howyi/conv
最新稳定版本:v2.1.9
Composer 安装命令:
composer require howyi/conv
包简介
Generate MySQL migration queries from actual DB and DDL
README 文档
README
conv
Core package for howyi/conv-laravel
Generate MySQL migration queries from actual DB and DDL
composer require howyi/conv --dev
Query sample
tbl_user.sql
CREATE TABLE `tbl_user` ( `user_id` int(11) NOT NULL COMMENT 'User ID', `age` tinyint(3) UNSIGNED COMMENT 'User age', PRIMARY KEY (`user_id`), KEY `id_age` (`user_id`, `age`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='User management table';
Generated migration
UP
CREATE TABLE `tbl_user` ( `user_id` int(11) NOT NULL COMMENT 'User ID', `age` tinyint(3) UNSIGNED COMMENT 'User age', PRIMARY KEY (`user_id`), KEY `id_age` (`user_id`, `age`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='User management table';
DOWN
DROP TABLE `tbl_user`;
CONTRIBUTING
install
$ composer install
check (before pull-request)
$ composer check-fix
统计信息
- 总下载量: 359.26k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-07-30