AddAvatarToUsers::up PHP Метод

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

Run the migrations.
public up ( )
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            $table->string('avatar')->nullable();
        });
    }
AddAvatarToUsers