Viewing File: /home/markqprx/iniasli.pro/migrations/2022_08_17_184337_add_card_expires_column_to_users_table.php

<?php

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

return new class extends Migration {
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->string('card_expires', 10)->nullable();
        });
    }

    public function down()
    {
        //
    }
};
Back to Directory File Manager