madbob/GASdottoNG

View on GitHub
code/database/migrations/2015_11_21_012920_create_contacts_table.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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

class CreateContactsTable extends Migration
{
    public function up()
    {
        Schema::create('contacts', function (Blueprint $table) {
            $table->string('id')->primary();
            $table->timestamps();

            $table->string('target_type');
            $table->string('target_id');
            $table->string('type');
            $table->string('value');
        });
    }

    public function down()
    {
        Schema::drop('contacts');
    }
}