簡體   English   中英

如何在Laravel 5中創建表遷移

[英]How to create table migration in Laravel 5

我正在開發一個項目,我被分配了一個任務來為應用程序創建用戶管理。 但我堅持表關系和他們的遷移。

功夫

我有這些表:

  1. 用戶
    • 用戶身份
    • 用戶名
    • 密碼
  2. 簡介
    • PROFILE_ID
    • 用戶身份
    • 名字
    • 電子郵件
  3. 地址

    • ADDRESS_ID
    • PROFILE_ID
    • 地址
    • 國家
    • PIN碼
  4. 配置
    • config_id
    • configuration_name
    • configuration_type
    • PARENT_ID

現在我必須為相同的上述結構創建模型和遷移。 為此,我在模型和遷移類下創建/修改。

型號:用戶

namespace App;

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'username', 'password',
    ];

    /**
     * The attributes excluded from the model's JSON form.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];

    public function profile()
    {
        return $this->hasOne('Profile','user_id');
    }
}

遷移:2014_10_12_000000_create_users_table.php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('users', function (Blueprint $table) {
            $table->increments('user_id');
            $table->string('username');
            $table->string('password', 60);
            $table->rememberToken();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('users');
    }
}

型號:簡介

use Illuminate\Database\Eloquent\Model;

class Profile extends Model
{
    public function user(){
        return $this->belongsTo('User');
    }
    public function address()
    {
        return $this->hasOne('Address','address_id');
    }
}

遷移:2016_02_26_101749_create_profiles_table.php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateProfilesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('profiles', function (Blueprint $table) {
            $table->increments('profile_id');
            $table->integer('user_id')->unsigned();
            $table->foreign('user_id')->references('user_id')->on('users')->onDelete('cascade');
            $table->string('lastname')->nullable();
            $table->string('firstname')->nullable();
            $table->string('gender')->nullable();
            $table->string('email')->unique();
            $table->string('phonenumber', 20)->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('profiles');
    }
}

型號:Addess

namespace App;

use Illuminate\Database\Eloquent\Model;

class Address extends Model
{
    public function profile(){
        return $this->belongsTo('Profile');
    }

    public function city() {
        return $this->hasOne('Configuration', 'config_id');
    }

    public function state() {
      return $this->hasOne('Configuration', 'config_id');
    }

    public function country() {
        return $this->hasOne('Configuration', 'config_id');
    }
}

遷移:2016_02_26_102805_create_addresses_table.php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateAddressesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('addresses', function (Blueprint $table) {
            $table->increments('address_id');
            $table->integer('profile_id')->unsigned();
            $table->foreign('profile_id')->references('profile_id')->on('profiles')->onDelete('cascade');
            $table->string('address')->nullable();
            $table->integer('city')->unsigned();
            $table->foreign('city')->references('config_id')->on('configurations')->onDelete('cascade');
            $table->string('pincode')->nullable();
            $table->integer('state')->unsigned();
            $table->foreign('state')->references('config_id')->on('configurations')->onDelete('cascade');
            $table->integer('country')->unsigned();
            $table->foreign('country')->references('config_id')->on('configurations')->onDelete('cascade');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('addresses');
    }
}

型號:配置

namespace App;

use Illuminate\Database\Eloquent\Model;

class Configuration extends Model
{
    public function children() {
        return $this->hasMany('Configuration','parent_id');
    }
    public function parent() {
        return $this->belongsTo('Configuration','parent_id');
    }
   public function address(){
        return $this->belongsTo('Address');
    }
}

遷移:2016_02_26_104519_create_configurations_table.php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateConfigurationsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('configurations', function (Blueprint $table) {
            $table->increments('config_id');
            $table->string('configuration_name');
            $table->string('configuration_type');
            $table->string('parent_id');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('configurations');
    }
}

現在,當我運行php artisan migrate我收到的錯誤是:

遷移錯誤

請建議我如何做到這一點。 我必須使用相同的表結構,不能修改它。 如果有任何進一步的更新要求或我忘記了什么,請告訴我。

這是因為遷移將嘗試在配置之前遷移地址表,因此它不會找到您引用的外鍵config_id ,因此您可以更改遷移文件的名稱,然后migration commad可以首先傳遞configurations_table migrate文件然后傳遞addresses_table migrate文件,所以只需更改:

2016_02_26_104519_create_configurations_table.php

至 :

2016_02_26_102005_create_configurations_table.php
_____________^

之后,您應該運行optimize命令來重新生成優化的類加載器:

php artisan o

現在重新運行php artisan migrate命令應該解決問題。

希望這可以幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM