文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
5.8 外键操作
外键操作
Phinx 支持创建外键限制数据表。下面是一个外键创建例子
<?php
use Phinx\Migration\AbstractMigration;
class MyNewMigration extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$table = $this->table('tags');
$table->addColumn('tag_name', 'string')
->save();
$refTable = $this->table('tag_relationships');
$refTable->addColumn('tag_id', 'integer')
->addForeignKey('tag_id', 'tags', 'id', array('delete'=> 'SET_NULL', 'update'=> 'NO_ACTION'))
->save();
}
/**
* Migrate Down.
*/
public function down()
{
}
}
"On delete" 和 “On update” 操作分别使用 “delete” 和 “update” 选项定义。选项值可能是 ‘SET_NULL’, ‘NO_ACTION’, ‘CASCADE’ 和 ‘RESTRICT’。约束名可以使用 constraint
选项改变
也可以使用 addForeignKey()
多个字段。允许我们建立多个组合字段的外键
<?php
use Phinx\Migration\AbstractMigration;
class MyNewMigration extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$table = $this->table('follower_events');
$table->addColumn('user_id', 'integer')
->addColumn('follower_id', 'integer')
->addColumn('event_id', 'integer')
->addForeignKey(array('user_id', 'follower_id'),
'followers',
array('user_id', 'follower_id'),
array('delete'=> 'NO_ACTION', 'update'=> 'NO_ACTION', 'constraint' => 'user_follower_id'))
->save();
}
/**
* Migrate Down.
*/
public function down()
{
}
}
我们可以使用 constraint
参数给外面命名。仅支持 Phinx 版本 大于0.6.5
<?php
use Phinx\Migration\AbstractMigration;
class MyNewMigration extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$table = $this->table('your_table');
$table->addForeignKey('foreign_id', 'reference_table', array('id'),
array('constraint'=>'your_foreign_key_name'));
->save();
}
/**
* Migrate Down.
*/
public function down()
{
}
}
可以通过 hasForeignKey()
方法检查是否有外键
<?php
use Phinx\Migration\AbstractMigration;
class MyNewMigration extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$table = $this->table('tag_relationships');
$exists = $table->hasForeignKey('tag_id');
if ($exists) {
// do something
}
}
/**
* Migrate Down.
*/
public function down()
{
}
}
最后,可以使用 dropForeignKey
方法删除外键
<?php
use Phinx\Migration\AbstractMigration;
class MyNewMigration extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$table = $this->table('tag_relationships');
$table->dropForeignKey('tag_id');
}
/**
* Migrate Down.
*/
public function down()
{
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论