“Exemplo de migração de Laravel” Respostas de código

Crie migração com o modelo Laravel

#create model
	php artisan make:model Model_Name

#create model with migration
 	php artisan make:model Model_Name -m

#create model with migration and controller
    php artisan make:model Model_Name -mcr
Engineer Wajid Ali

migrações necessárias em campo Laravel

$table->string('foo')->nullable(false)->change();
r00ster

Crie migração com o modelo Laravel

php artisan make:model Settings --migration
Calm Crossbill

Exemplo de migração de Laravel

<?php

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

class CreateFirstTable extends Migration
{
    public function up()
    {
        Schema::create('first_table', function (Blueprint $table) {
            $table->increments('id');
            $table->string('first_string_column_name');
            $table->integer('secont_integer_column_name');
            $table->timestamps();
        });
    }

    public function down()
    {
        Schema::drop('first_table');
    }
}
Disgusted Duck

Exemplo de migração de Laravel

php artisan make:migration create_first_table --create=first_table
Disgusted Duck

Exemplo de migração de Laravel

<?php

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

class CreateFirstTable extends Migration
{
    public function up()
    {
        Schema::create('first_table', function (Blueprint $table) {
            $table->increments('id');
            $table->string('first_string_column_name');
            $table->integer('secont_integer_column_name');
            $table->timestamps();
        });
    }

    public function down()
    {
        Schema::drop('first_table');
    }
}
Disgusted Duck

Respostas semelhantes a “Exemplo de migração de Laravel”

Perguntas semelhantes a “Exemplo de migração de Laravel”

Mais respostas relacionadas para “Exemplo de migração de Laravel” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código