summaryrefslogtreecommitdiff
path: root/tests/Unit/Database/Migration/Stub/2001_04_11_123456_create_lorem_ipsum_table.php
blob: 0cc89e073eb8e5abbacdb032865b09b801bb2607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php

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

class CreateLoremIpsumTable extends Migration
{
    /**
     * Run the migration
     */
    public function up()
    {
        $this->schema->create('lorem_ipsum', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name')->unique();
            $table->string('email');
        });
    }

    /**
     * Reverse the migration
     */
    public function down()
    {
        $this->schema->dropIfExists('lorem_ipsum');
    }
}