You are here

Schema.php in Drupal 10

File

core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Schema.php
View source
<?php

namespace Drupal\corefake\Driver\Database\corefakeWithAllCustomClasses;

use Drupal\Core\Database\Schema as DatabaseSchema;

/**
 * CorefakeWithAllCustomClasses implementation of \Drupal\Core\Database\Schema.
 */
class Schema extends DatabaseSchema {

  /**
   * {@inheritdoc}
   */
  public function getFieldTypeMap() {
  }

  /**
   * {@inheritdoc}
   */
  public function renameTable($table, $new_name) {
  }

  /**
   * {@inheritdoc}
   */
  public function dropTable($table) {
  }

  /**
   * {@inheritdoc}
   */
  public function addField($table, $field, $spec, $keys_new = []) {
  }

  /**
   * {@inheritdoc}
   */
  public function dropField($table, $field) {
  }

  /**
   * {@inheritdoc}
   */
  public function indexExists($table, $name) {
  }

  /**
   * {@inheritdoc}
   */
  public function addPrimaryKey($table, $fields) {
  }

  /**
   * {@inheritdoc}
   */
  public function dropPrimaryKey($table) {
  }

  /**
   * {@inheritdoc}
   */
  public function addUniqueKey($table, $name, $fields) {
  }

  /**
   * {@inheritdoc}
   */
  public function dropUniqueKey($table, $name) {
  }

  /**
   * {@inheritdoc}
   */
  public function addIndex($table, $name, $fields, array $spec) {
  }

  /**
   * {@inheritdoc}
   */
  public function dropIndex($table, $name) {
  }

  /**
   * {@inheritdoc}
   */
  public function changeField($table, $field, $field_new, $spec, $keys_new = []) {
  }

}

Classes

Namesort descending Description
Schema CorefakeWithAllCustomClasses implementation of \Drupal\Core\Database\Schema.