PHPackages                             tumtum/oxid-schema-expander - 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. tumtum/oxid-schema-expander

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

tumtum/oxid-schema-expander
===========================

Library to modify the OXID eShop database. Ideal for OXID modules to have their tables.

v1.0.1(4y ago)07.9k1PHP

Since Sep 16Pushed 4y ago1 watchersCompare

[ Source](https://github.com/TumTum/oxid-schema-expander)[ Packagist](https://packagist.org/packages/tumtum/oxid-schema-expander)[ RSS](/packages/tumtum-oxid-schema-expander/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (4)Versions (2)Used By (1)

OXID - SchemaExpander
=====================

[](#oxid---schemaexpander)

[![Build Status](https://camo.githubusercontent.com/7a869a1311969c16453af5b2bd5680b2c754a237059d68e62d0cf298fdd1fa50/68747470733a2f2f7472617669732d63692e6f72672f54756d54756d2f6f7869642d736368656d612d657870616e6465722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/TumTum/oxid-schema-expander)

Library to modify the OXID eShop database. Ideal for OXID modules to have their tables.

The tables will be reviewed and extended or created if necessary.

Example
-------

[](#example)

```
     public static function onModuleActivation()
     {
         $desire = new DesireExpander();

         // Simple create new table
         $desire
             ->table('tm_example')
                 ->addFieldOxid()
                 ->addFieldOxactive()
                 ->addFieldOxactiveFrom()
                 ->addFieldOxactiveTo()
                 ->addField('OXHASH', "char(32) COLLATE latin1_general_ci NOT NULL DEFAULT '' COMMENT 'Hash'")
                 ->addField('OXTIME', "int(11) NOT NULL COMMENT 'Validation time'")
                 ->addFieldOxtimestamp()
                 ->setPrimaryKey('OXID');

         // Extent a oxarticles table
         $desire
             ->table('oxarticles')
                 ->addField('MYCOLUMN', "char(32) NOT NULL DEFAULT 'Wowo' COMMENT 'Extent only one Column'")
                 ->after('oxlang');

         // A standard oxid-ee table
         $desire
             ->table('tm_example_enterprice')
                 ->addFieldOxid()
                 ->addFieldOxshopid()
                 ->addFieldOxlang()
                 ->addField('OXHASH', "char(32) COLLATE latin1_general_ci NOT NULL DEFAULT '' COMMENT 'Hash'")
                 ->addField('OXTIME', "int(11) NOT NULL COMMENT 'Validation time'")
                 ->addFieldOxtimestamp()
                 ->setPrimaryKey('OXID')
                 ->addKey('FASTFIND', [['OXHASH', 12], 'OXTIME']);

         //Commit all Tables
         $desire->execute();
     }
```

Changelog
---------

[](#changelog)

\[Unreleased\]
--------------

[](#unreleased)

v1.0.1 - 2020-03-05
-------------------

[](#v101---2020-03-05)

### Fixed

[](#fixed)

- Possible error removed, if database fetch mode changes in the meantime.

v1.0.0 - 2020-02-23
-------------------

[](#v100----2020-02-23)

- Publishing

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

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

1752d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/08ef539c93c95c0ccb3c36d51c8cc86a6276e8e5a8fb3fadd983843b013dbba3?d=identicon)[TumTum](/maintainers/TumTum)

---

Top Contributors

[![TumTum](https://avatars.githubusercontent.com/u/225997?v=4)](https://github.com/TumTum "TumTum (8 commits)")

### Embed Badge

![Health badge](/badges/tumtum-oxid-schema-expander/health.svg)

```
[![Health](https://phpackages.com/badges/tumtum-oxid-schema-expander/health.svg)](https://phpackages.com/packages/tumtum-oxid-schema-expander)
```

###  Alternatives

[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k117.2M118](/packages/jdorn-sql-formatter)[propel/propel1

Propel is an open-source Object-Relational Mapping (ORM) for PHP5.

8351.6M87](/packages/propel-propel1)[pgvector/pgvector

pgvector support for PHP

198741.5k12](/packages/pgvector-pgvector)[jfelder/oracledb

Oracle DB driver for Laravel

11518.4k](/packages/jfelder-oracledb)

PHPackages © 2026

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