protected Schema::createKeySql($fields)
Build the SQL expression for keys.
File
- core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php, line 99
Class
- Schema
- SQLite implementation of \Drupal\Core\Database\Schema.
Namespace
Drupal\Core\Database\Driver\sqlite
Code
1 2 3 4 5 6 7 8 9 10 11 12 | protected function createKeySql( $fields ) { $return = array (); foreach ( $fields as $field ) { if ( is_array ( $field )) { $return [] = $field [0]; } else { $return [] = $field ; } } return implode( ', ' , $return ); } |
Please login to continue.