PHPackages                             liquid207/laravel-enum-migration - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. liquid207/laravel-enum-migration

ActiveLibrary[Database &amp; ORM](/categories/database)

liquid207/laravel-enum-migration
================================

Macros for migrate enum column.

v1.0.0(6y ago)06MITPHP

Since Aug 1Pushed 5y ago1 watchersCompare

[ Source](https://github.com/liquid207/laravel-enum-migration)[ Packagist](https://packagist.org/packages/liquid207/laravel-enum-migration)[ Docs](https://github.com/liquid207/laravel-enum-migration)[ RSS](/packages/liquid207-laravel-enum-migration/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

laravel-enum-migration
======================

[](#laravel-enum-migration)

Macros for migrate enum column.

Features
========

[](#features)

- Append a new option to enum column.
- Remove options from enum column by name.

Installation
============

[](#installation)

- Run `composer require liquid207/laravel-enum-migration`

Usage
=====

[](#usage)

```
class User extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            // Append one
            $table->enumAppend('type', 'option1');

            // Append array
            $table->enumAppend('type', ['option2', 'option3']);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('users', function (Blueprint $table) {
            // Remove one
            $table->enumRemove('type', 'option1');

            // Remove array
            $table->enumRemove('type', ['option2', 'option3']);
        });
    }
}
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2525d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/48850370?v=4)[liquid207](/maintainers/liquid207)[@liquid207](https://github.com/liquid207)

---

Top Contributors

[![liquid207](https://avatars.githubusercontent.com/u/48850370?v=4)](https://github.com/liquid207 "liquid207 (2 commits)")

### Embed Badge

![Health badge](/badges/liquid207-laravel-enum-migration/health.svg)

```
[![Health](https://phpackages.com/badges/liquid207-laravel-enum-migration/health.svg)](https://phpackages.com/packages/liquid207-laravel-enum-migration)
```

###  Alternatives

[kirschbaum-development/eloquent-power-joins

The Laravel magic applied to joins.

1.6k29.9M42](/packages/kirschbaum-development-eloquent-power-joins)[mongodb/laravel-mongodb

A MongoDB based Eloquent model and Query builder for Laravel

7.1k8.0M90](/packages/mongodb-laravel-mongodb)[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8723.1M23](/packages/yajra-laravel-oci8)[bavix/laravel-wallet

It's easy to work with a virtual wallet.

1.3k1.2M19](/packages/bavix-laravel-wallet)[glushkovds/phpclickhouse-laravel

Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel

2051.4M2](/packages/glushkovds-phpclickhouse-laravel)[laravel-liberu/laravel-gedcom

A package that converts gedcom files to Eloquent models

782.5k1](/packages/laravel-liberu-laravel-gedcom)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
