Proses Migrasi Table Laravel

 Proses Migrasi Table Laravel



Pembuatan file migrasi

=> php artisan make:migration create_user_table

Pengaturan nama table pada database

public function up()
    {
        Schema::create('user', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('username');
            $table->string('email')->unique();
            $table->string('password');
            $table->timestamps();
        });
    }

Melakukan Migrasi

=> php artisan migrate --path=/database/migrations/.....php 


Posting Komentar

Post a Comment (0)

Lebih baru Lebih lama