Миграция Laravel не удалась
У меня проблемы с Laravel Migrations. Я недавно прекратил разработку на C9 и решил попробовать Nitrous.io вместо этого - однако я не уверен, связано ли это с моей ошибкой. Я также решил перейти с sqlite на mysql. Так как я немного Noob SQL; У меня проблемы с выяснением этого.
Я получаю эту ошибку:
[Illuminate\Database\QueryException]
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'unsigned not null, `tag_id` varchar(255) unsigned
not null, `created_at` timesta' at line 1 (SQL: create table `yoyo_tag` (`id` int unsigned not null auto_increment primary key, `yoyo_id` varchar(255) unsigned not null, `tag_id` varchar(255) unsigned not null, `created_at` timestamp defau
lt 0 not null, `updated_at` timestamp default 0 not null) default character set utf8 collate utf8_unicode_ci)
а также это:
[PDOException]
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'unsigned not null, `tag_id` varchar(255) unsigned
not null, `created_at` timesta' at line 1
Моя миграция, как показано ниже:
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateYoyoTagsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('yoyo_tag', function(Blueprint $table)
{
$table->increments('id');
$table->string('yoyo_id')->unsigned()->index();
$table->foreign('yoyo_id')->references('id')->on('yoyo')->onDelete('cascade');
$table->string('tag_id')->unsigned()->index();
$table->foreign('tag_id')->references('id')->on('tags')->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('yoyo_tag');
}
}
Оператор создания таблицы ниже:
create table `yoyo_tag` (`id` int unsigned not null auto_increment primary key, `yoyo_id` varchar(255) unsigned not null, `tag_id` varchar(255) unsigned not null, `created_at` timestamp default 0 not null, `updated_at` times
tamp default 0 not null) default character set utf8 collate utf8_unicode_ci
1 ответ
Решение
Глядя на вашу миграцию, yoyo_id
а также tag_id
должно быть скорее целые числа без знака, а не строка без знака. В down
Метод, вы также должны удалить внешние ключи перед удалением таблицы, чтобы действительная миграция выглядела следующим образом:
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateYoyoTagsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('yoyo_tag', function(Blueprint $table)
{
$table->increments('id');
$table->integer('yoyo_id')->unsigned()->index();
$table->foreign('yoyo_id')->references('id')->on('yoyo')->onDelete('cascade');
$table->integer('tag_id')->unsigned()->index();
$table->foreign('tag_id')->references('id')->on('tags')->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('yoyo_tag', function ($table) {
$table->dropForeign('yoyo_tag_yoyo_id_foreign');
$table->dropForeign('yoyo_tag_tag_id_foreign');
});
Schema::drop('yoyo_tag');
}
}