php Laravel Migration TIps技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel Migration TIps技巧相关的知识,希望对你有一定的参考价值。

<?php

//set foreign key to null

$table->integer('country_id')->nullable()->unsigned();

$table->integer('state_id')->nullable()->unsigned();

//set foreign key with references

$table->foreign('country_id')->references('id')->on('countries');
$table->foreign('state_id')->references('id')->on('states');

以上是关于php Laravel Migration TIps技巧的主要内容,如果未能解决你的问题,请参考以下文章

php Crear una tabla en Laravel mediante una migration

Laravel5.1 配置数据库和Migration

如何使用laravel搭建后台登录系统

laravel 怎么使用base64

如何使用laravel搭建后台登录系统

laravel 怎么获取header