GetDKAN/dkan

View on GitHub
modules/datastore/src/DataDictionary/AlterTableQueryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Drupal\datastore\DataDictionary;

/**
 * Alter table query interface.
 *
 * Provides ability to alter schema of existing datastore tables.
 */
interface AlterTableQueryInterface {

  /**
   * Apply data dictionary types to the given table.
   */
  public function execute(): void;

}