AddLastMirroredDate::up PHP Метод

up() публичный Метод

Run the migrations.
public up ( )
    public function up()
    {
        Schema::table('projects', function (Blueprint $table) {
            $table->dateTime('last_mirrored')->nullable()->default(null);
        });
    }
AddLastMirroredDate