"Laravel 데이터베이스: 마이그레이션"의 두 판 사이의 차이

5번째 줄: 5번째 줄:
* 마이그레이션 생성
* 마이그레이션 생성
<source lang='bash'>
<source lang='bash'>
php artisan make:migration create_photos_table --create=photos
php artisan make:migration create_tasks_table --create=tasks
</source>
</source>


15번째 줄: 15번째 줄:
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Migrations\Migration;


class CreatePhotosTable extends Migration
class CreateTasksTable extends Migration
{
{
     public function up()
     public function up()

2016년 5월 21일 (토) 18:57 판

1 개요

라라벨 Database Migration
라라벨 DB 마이그레이션
  • 마이그레이션 생성
php artisan make:migration create_tasks_table --create=tasks
  • 마이그레이션 작성(수정)
<?php

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

class CreateTasksTable extends Migration
{
    public function up()
    {
        Schema::create('tasks', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->timestamps();
        });
    }

    public function down()
    {
        Schema::drop('tasks');
    }
}
  • 마이그레이션 수행
php artisan migrate

2 같이 보기

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}