diff options
Diffstat (limited to 'modules/locale/locale.schema')
-rw-r--r-- | modules/locale/locale.schema | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/locale/locale.schema b/modules/locale/locale.schema index f511a020f..be31341e9 100644 --- a/modules/locale/locale.schema +++ b/modules/locale/locale.schema @@ -40,6 +40,8 @@ function locale_schema() { 'textgroup' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => 'default'), // The original string in English. 'source' => array('type' => 'text', 'mysql_type' => 'blob', 'not null' => TRUE), + // Drupal core version, which last used the string. + 'version' => array('type' => 'varchar', 'length' => 20, 'not null' => TRUE, 'default' => 'none'), ), 'primary key' => array('lid'), 'indexes' => array |