EscolaLMS/topic-types

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

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