Schema::getFieldTypeMap()
This maps a generic data type in combination with its data size to the engine-specific data type.
Overrides Schema::getFieldTypeMap
File
- core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php, line 364
Class
- Schema
- PostgreSQL implementation of \Drupal\Core\Database\Schema.
Namespace
Drupal\Core\Database\Driver\pgsql
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | function getFieldTypeMap() { // Put :normal last so it gets preserved by array_flip. This makes // it much easier for modules (such as schema.module) to map // database types back into schema types. // $map does not use drupal_static as its value never changes. static $map = array ( 'varchar_ascii:normal' => 'varchar' , 'varchar:normal' => 'varchar' , 'char:normal' => 'character' , 'text:tiny' => 'text' , 'text:small' => 'text' , 'text:medium' => 'text' , 'text:big' => 'text' , 'text:normal' => 'text' , 'int:tiny' => 'smallint' , 'int:small' => 'smallint' , 'int:medium' => 'int' , 'int:big' => 'bigint' , 'int:normal' => 'int' , 'float:tiny' => 'real' , 'float:small' => 'real' , 'float:medium' => 'real' , 'float:big' => 'double precision' , 'float:normal' => 'real' , 'numeric:normal' => 'numeric' , 'blob:big' => 'bytea' , 'blob:normal' => 'bytea' , 'serial:tiny' => 'serial' , 'serial:small' => 'serial' , 'serial:medium' => 'serial' , 'serial:big' => 'bigserial' , 'serial:normal' => 'serial' , ); return $map ; } |
Please login to continue.