You are here

README.txt in Schema 8

Same filename and directory in other branches
  1. 5 README.txt
  2. 6 README.txt
  3. 7 README.txt
Schema module

PREREQUISITES

Drupal 8.x

OVERVIEW

Introduced in Drupal 6, the Schema API allows modules to declare their
database tables in a structured array (similar to the Form API) and
provides API functions for creating, dropping, and changing tables,
columns, keys, and indexes.

The Schema module provides additional Schema-related functionality not
provided by the core Schema API that is useful for module
developers. Currently, this includes:

* Schema documentation: hyperlinked display of the schema's embedded
  documentation explaining what each table and field is for.
* Schema structure generation: the module examines the live database
  and creates Schema API data structures for all tables that match the
  live database.
* Schema comparison: the module compares the live database structure
  with the schema structure declared by all enabled modules, reporting
  on any missing or incorrect tables.

Note for MySQL users: The Schema module requires MySQL 5. Prior
versions of MySQL do not support the INFORMATION_SCHEMA database that
the Schema module uses to inspect the database.

INSTALLATION

Install and activate Schema like every other Drupal module.

ADMINISTRATOR USAGE

Visit Administer >> Structure >> Schema to access Schema's UI
functionality.

AUTHOR

Barry Jaspan
firstname at lastname dot org

File

README.txt
View source
  1. Schema module
  2. PREREQUISITES
  3. Drupal 8.x
  4. OVERVIEW
  5. Introduced in Drupal 6, the Schema API allows modules to declare their
  6. database tables in a structured array (similar to the Form API) and
  7. provides API functions for creating, dropping, and changing tables,
  8. columns, keys, and indexes.
  9. The Schema module provides additional Schema-related functionality not
  10. provided by the core Schema API that is useful for module
  11. developers. Currently, this includes:
  12. * Schema documentation: hyperlinked display of the schema's embedded
  13. documentation explaining what each table and field is for.
  14. * Schema structure generation: the module examines the live database
  15. and creates Schema API data structures for all tables that match the
  16. live database.
  17. * Schema comparison: the module compares the live database structure
  18. with the schema structure declared by all enabled modules, reporting
  19. on any missing or incorrect tables.
  20. Note for MySQL users: The Schema module requires MySQL 5. Prior
  21. versions of MySQL do not support the INFORMATION_SCHEMA database that
  22. the Schema module uses to inspect the database.
  23. INSTALLATION
  24. Install and activate Schema like every other Drupal module.
  25. ADMINISTRATOR USAGE
  26. Visit Administer >> Structure >> Schema to access Schema's UI
  27. functionality.
  28. AUTHOR
  29. Barry Jaspan
  30. firstname at lastname dot org