AddLastMirroredDate::up PHP Method

up() public method

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