MediaWiki REL1_34
Field.php
Go to the documentation of this file.
1<?php
2
3namespace Wikimedia\Rdbms;
4
9interface Field {
14 function name();
15
20 function tableName();
21
26 function type();
27
32 function isNullable();
33}
34
38class_alias( Field::class, 'Field' );
Base for all database-specific classes representing information about database fields.
Definition Field.php:9
isNullable()
Whether this field can store NULL values.
tableName()
Name of table this field belongs to.
type()
Database type.