[PR #272] [MERGED] Implement custom options on table level and complete column options implementation #7942

Open
opened 2026-01-22 15:57:40 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/272
Author: @jsor
Created: 1/26/2012
Status: Merged
Merged: 1/28/2012
Merged by: @beberlei

Base: masterHead: table_options


📝 Commits (2)

  • d68fcd8 Implement custom options on table level
  • fac820f Complete custom column option implementation

📊 Changes

12 files changed (+134 additions, -12 deletions)

View changed files

📝 doctrine-mapping.xsd (+19 -0)
📝 lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php (+4 -0)
📝 lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php (+4 -0)
📝 lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php (+37 -4)
📝 lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php (+4 -0)
📝 lib/Doctrine/ORM/Mapping/Table.php (+2 -0)
📝 lib/Doctrine/ORM/Tools/SchemaTool.php (+6 -0)
📝 tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php (+23 -2)
📝 tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.User.php (+5 -0)
📝 tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml (+15 -2)
📝 tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.User.dcm.yml (+8 -0)
📝 tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php (+7 -4)

📄 Description

As requested in IRC by @beberlei.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/272 **Author:** [@jsor](https://github.com/jsor) **Created:** 1/26/2012 **Status:** ✅ Merged **Merged:** 1/28/2012 **Merged by:** [@beberlei](https://github.com/beberlei) **Base:** `master` ← **Head:** `table_options` --- ### 📝 Commits (2) - [`d68fcd8`](https://github.com/doctrine/orm/commit/d68fcd8bd20511f55f9ebdfe24d589db7cfc464b) Implement custom options on table level - [`fac820f`](https://github.com/doctrine/orm/commit/fac820f0e29d3dbfb185d27bd9816066b0a2dc10) Complete custom column option implementation ### 📊 Changes **12 files changed** (+134 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `doctrine-mapping.xsd` (+19 -0) 📝 `lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php` (+4 -0) 📝 `lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php` (+4 -0) 📝 `lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php` (+37 -4) 📝 `lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php` (+4 -0) 📝 `lib/Doctrine/ORM/Mapping/Table.php` (+2 -0) 📝 `lib/Doctrine/ORM/Tools/SchemaTool.php` (+6 -0) 📝 `tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php` (+23 -2) 📝 `tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.User.php` (+5 -0) 📝 `tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml` (+15 -2) 📝 `tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.User.dcm.yml` (+8 -0) 📝 `tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php` (+7 -4) </details> ### 📄 Description As requested in IRC by @beberlei. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 15:57:40 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#7942