Page MenuHomeWickedGov Phorge

Field.php
No OneTemporary

Size
519 B
Referenced Files
None
Subscribers
None

Field.php

<?php
namespace Wikimedia\Rdbms;
/**
* Base for all database-specific classes representing information about database fields
* @ingroup Database
*/
interface Field {
/**
* Field name
* @return string
*/
public function name();
/**
* Name of table this field belongs to
* @return string
*/
public function tableName();
/**
* Database type
* @return string
*/
public function type();
/**
* Whether this field can store NULL values
* @return bool
*/
public function isNullable();
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 13:57 (1 d, 19 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
90/ea/bf7fc71364ebda47e2bc43ba5bbc
Default Alt Text
Field.php (519 B)

Event Timeline