lundi 27 mars 2017

Failing to create new migration

I want to create a new table, users_profile here is the migration code

<?php

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

class CreateUsersProfileTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('users_profile', function (Blueprint $table) {
            $table->increments('id');
            $table->string('city');
            $table->string('country');
             $table->integer('users_id')->unsigned();
                $table->foreign('users_id')
                ->references('id')
                ->on('users')
                ->onDelete('cascade');               
            $table->timestamps();
        });
    }

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

facing an error

base table or view already exists: 1050 Table "users" already exists

here is the migration code of users

<?php

use Illuminate\Support\Facades\Schema;
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('id');
            $table->string('first_name');
            $table->string('last_name');
            $table->string('email')->unique();
            $table->string('password');
            $table->rememberToken();
            $table->timestamps();
        });
    }

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

Although i am creating a new migration, a new table only i am declaring a primary key of users table as foreign key in users_profiles but facing the above error help please!



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2nEdSnh
via IFTTT

Aucun commentaire:

Enregistrer un commentaire