EscolaLMS/topic-types

View on GitHub
database/migrations/2021_04_27_1619520671_create_topic_oembeds_table.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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

class CreateTopicOembedsTable extends Migration
{
    public function up()
    {
        Schema::create('topic_oembeds', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->timestamps();
            $table->string('value', 255);
        });
    }

    public function down()
    {
        Schema::dropIfExists('topic_oembeds');
    }
}