EscolaLMS/topic-types

View on GitHub
database/migrations/2023_07_18_082455_add_length_column_to_topic_videos_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 AddLengthColumnToTopicVideosTable extends Migration
{
    public function up(): void
    {
        Schema::table('topic_videos', function (Blueprint $table) {
            $table->bigInteger('length')->nullable();
        });
    }

    public function down(): void
    {
        Schema::table('topic_videos', function (Blueprint $table) {
            $table->dropColumn('length');
        });
    }
}