Skip to content

Commit

Permalink
Merge commit 'refs/tags/v3.0.2^{}'
Browse files Browse the repository at this point in the history
  • Loading branch information
npoa-cm committed May 14, 2019
2 parents 15a672e + 22928f6 commit e728ccc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dbal/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function addToSchema(BaseSchema $schema)
protected function addClassTable()
{
$table = $this->createTable($this->options['class_table_name']);
$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => 'auto'));
$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => true));
$table->addColumn('class_type', 'string', array('length' => 200));
$table->setPrimaryKey(array('id'));
$table->addUniqueIndex(array('class_type'));
Expand All @@ -83,7 +83,7 @@ protected function addEntryTable()
{
$table = $this->createTable($this->options['entry_table_name']);

$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => 'auto'));
$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => true));
$table->addColumn('class_id', 'integer', array('unsigned' => true));
$table->addColumn('object_identity_id', 'integer', array('unsigned' => true, 'notnull' => false));
$table->addColumn('field_name', 'string', array('length' => 50, 'notnull' => false));
Expand Down Expand Up @@ -111,7 +111,7 @@ protected function addObjectIdentitiesTable()
{
$table = $this->createTable($this->options['oid_table_name']);

$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => 'auto'));
$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => true));
$table->addColumn('class_id', 'integer', array('unsigned' => true));
$table->addColumn('object_identifier', 'string', array('length' => 100));
$table->addColumn('parent_object_identity_id', 'integer', array('unsigned' => true, 'notnull' => false));
Expand Down Expand Up @@ -153,7 +153,7 @@ protected function addSecurityIdentitiesTable()
{
$table = $this->createTable($this->options['sid_table_name']);

$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => 'auto'));
$table->addColumn('id', 'integer', array('unsigned' => true, 'autoincrement' => true));
$table->addColumn('identifier', 'string', array('length' => 200));
$table->addColumn('username', 'boolean');

Expand Down

0 comments on commit e728ccc

Please sign in to comment.