php教程
php是一种创建动态交互性站点的强有力的服务器端脚本语言。php教程包括:1.php安装;2.php执行;3.php配置;4.查看连接状态等等。
1. 安装
2. 执行
直接运行 php vendor/bin/phinx init 可生成配置文件
另外一种方法是直接使用php文件做配置文件
直接运行 php vendor/bin/phinx init 可生成配置文件
另外一种方法是直接使用php文件做配置文件
3. 使用phinx.php进行配置
4.执行 php vendor/bin/phinx status 查看连接状态
5.执行 php vendor/bin/phinx create migration
6.现在生成了created /db/migrations/20180310020523_migration.php
编辑这个文件,添加数据库创建内容.
7.默认会添加一个自增id,作为主键
执行 php vendor/bin/phinx migrate
8.初始化数据
执行 php vendor/bin/phinx seed:create CategorySeeder
系统自动创建 created ./db/seeds/CategorySeeder.php
9.修改 CategorySeeder.php
执行 php vendor/bin/phinx seed:run 将会进行所有Seed
10.如果想运行指定的Seed需要用- s参数指定
php vendor/bin/phinx seed:run -s CategorySeeder
11.更新表结构
当需要更新表结构的时候,需要再创建一个migrate
执行php vendor/bin/phinx create ChangeArtist
再将需要更新的内容写到change函数
最后执行php vendor/bin/phinx migrate
之前的已经执行过的migrate不会执行, 只会执行更新的部分。
最后,推荐我们的管理工具给大家。