Modifying Columns: Updating Column Attributes

Schema::table('users', function (Blueprint $table) {
    $table->string('name', 50)->change();
});
Schema::table('users', function (Blueprint $table) {
    $table->string('name', 50)->nullable()->change();
});

Modifying Columns: Updating Column Attributes — Structure map

Clickable & Draggable!

Modifying Columns: Updating Column Attributes — Related pages: