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 today

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 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

2474d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3343331c177072d08a634fb25106489181030843fa1eda03d5bf6e4fd52e9c1d?d=identicon)[liquid207](/maintainers/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

[owen-it/laravel-auditing

Audit changes of your Eloquent models in Laravel

3.4k33.0M95](/packages/owen-it-laravel-auditing)[staudenmeir/eloquent-json-relations

Laravel Eloquent relationships with JSON keys

1.1k5.8M24](/packages/staudenmeir-eloquent-json-relations)[bavix/laravel-wallet

It's easy to work with a virtual wallet.

1.3k1.1M11](/packages/bavix-laravel-wallet)[dragon-code/migrate-db

Easy data transfer from one database to another

15717.4k](/packages/dragon-code-migrate-db)[gearbox-solutions/eloquent-filemaker

A package for getting FileMaker records as Eloquent models in Laravel

6454.8k2](/packages/gearbox-solutions-eloquent-filemaker)[cybercog/laravel-ownership

Laravel Ownership simplify management of Eloquent model's owner.

9126.6k3](/packages/cybercog-laravel-ownership)

PHPackages © 2026

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