Special case opus mime detction
[mediawiki.git] / includes / libs / rdbms / field / Field.php
blobed102f40c17c06d24d4b998ab7fa9faa5c7b0dba
1 <?php
2 /**
3 * Base for all database-specific classes representing information about database fields
4 * @ingroup Database
5 */
6 interface Field {
7 /**
8 * Field name
9 * @return string
11 function name();
13 /**
14 * Name of table this field belongs to
15 * @return string
17 function tableName();
19 /**
20 * Database type
21 * @return string
23 function type();
25 /**
26 * Whether this field can store NULL values
27 * @return bool
29 function isNullable();