본문 바로가기
카테고리 없음

[LARAVEL] DB 활용하기 migration

by 코딩초밥 2022. 8. 13.
반응형

라라벨은 migration 을 사용하여서 db를 생성,편집,삭제 등을 합니다

sql 의 쿼리문을 php 함수형으로 볼수있습니다

 

기본적인 creat table 을 해보겠습니다

 

php artisan make:migration create_post_table

[결과물]

<?php

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

return new class extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('posts', function (Blueprint $table) {
            $table->id();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('posts');
    }
};

 

명령어에 내가 만들고 싶은 table 이름을

php artisan make:migration create_{원하는이름}_table

이렇게 만들어준다.

 

그 이후 내가 원하는 필드를 만드는 코드를 작성한다.

<?php

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

return new class extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('posts', function (Blueprint $table) {
            $table->id();
            $table->string('title');
            $table->text('excerpt');
            $table->text('body');
            $table->integer('min_to_Read')->default(1);
            $table->string('image_path');
            $table->boolean('is_published');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('posts');
    }
};

 

그이후 마이그래이트 명령어를한다

php artisan migrate

[결과물]

위에 있는 코드와 동일하게 만들어진다.

반응형

댓글