function SchemaDefinitionTest::testInvalidSerialForUnsigned
Tests Serial column.
File
-
core/
tests/ Drupal/ Tests/ Core/ Database/ SchemaDefinitionTest.php, line 202
Class
- SchemaDefinitionTest
- Tests SchemaDefinition Column object validations.
Namespace
Drupal\Tests\Core\DatabaseCode
public function testInvalidSerialForUnsigned() : void {
$this->expectException(SchemaDefinitionException::class);
$this->expectExceptionMessage('Cannot set \'unsigned\' for serial column \'id\'');
new Table(name: 'test', columns: [
Column::create(name: 'id', type: ColumnType::Serial, unsigned: TRUE),
], primaryKey: new PrimaryKey([
'id',
]));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.