sql >> Databáze >  >> RDS >> Mysql

Laravel 4 Migrations hází chybu 1072

Musíte vytvořit sloupec související s cizím klíčem:

class CreateAreasTable extends Migration {

 /**
  * Run the migrations.
  *
  * @return void
  */
  public function up()
  {
    // Creates the cemeteries table
    Schema::create('areas', function($table)
    {
        $table->engine = 'InnoDB';
        $table->increments('id');

        $table->integer('region_id')->unsigned();
        $table->foreign('region_id')->references('id')->on('regions');

        $table->string('name', 160)->unique();
        $table->timestamps();

    });
  }
}

Někdy (v závislosti na vašem databázovém serveru) budete muset vytvořit cizí klíče ve dvou krocích:

class CreateAreasTable extends Migration {

 /**
  * Run the migrations.
  *
  * @return void
  */
  public function up()
  {
    // Create the table and the foreign key column
    Schema::create('areas', function($table)
    {
        $table->engine = 'InnoDB';
        $table->increments('id');

        $table->integer('region_id')->unsigned();

        $table->string('name', 160)->unique();
        $table->timestamps();

    });

    // Create the relation
    Schema::tabe('areas', function($table)
    {
        $table->foreign('region_id')->references('id')->on('regions');
    });
  }
}


  1. Jak určit regex Ruby při použití Active Record v Rails?

  2. Použijte klíčové slovo SQL jako název aliasu sloupce

  3. Jak dotazovat pole jsonb pomocí operátoru IN

  4. Připojení Pythonu k databázi MySQL pomocí konektoru MySQL a příkladu PyMySQL