tinywan / phinx
ThinkORM phinx for webman 插件
dev-main
2022-03-26 07:05 UTC
Requires
- php: >=7.4
- robmorgan/phinx: ^0.12.10
Requires (Dev)
- php-coveralls/php-coveralls: ^2.1
- phpunit/phpunit: ~7.0|~8.0|~9.0
- workerman/webman: ^1.0
This package is auto-updated.
Last update: 2024-08-26 12:15:15 UTC
README
webman-phinx
检查是否创建成功
# 数据库设链接是否正确
vendor/bin/phinx test
# 默认的环境是开发环境,这个测试数据库的链接是否正确
vendor/bin/phinx test -e development
https://www.liuhaolin.com/moren/1053.html
三注意事项
-
1 在 change 方法中创建或更新表时,你必须使用 create() 或 update() 方法;在 up 方法中使用 save()
-
2 不能在 change() 方法中使用插入数据,只能在 up() 和 down() 中使用