Русское сообщество разработки на PHP-фреймворке Laravel.
Ты не вошёл. Вход тут.
Страницы 1
Как вы меняете reference , foreign key когда оказывается например как в моем случаи связь должна быть на другую таблицу?
Не в сети
у меня пытается пересоздать таблицы и получаю ошибку что такая таблица уже существует хотя в down указано dropIfExist
Не в сети
Не в сети
их много но первая которая выстреливает вот
public function up()
{
Schema::create('person', function (Blueprint $table) {
$table->increments('id');
$table->string('first_name');
$table->string('last_name');
$table->string('email')->unique();
$table->string('phone')->nullable();
$table->string('nin')->nullable();
$table->date('dob')->nullable();
$table->timestamps();
});
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('email')->unique();
$table->string('password');
$table->string('role');
$table->tinyInteger('active')->default(1);
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('person');
Schema::dropIfExists('users');
}
Не в сети
Страницы 1