| Versionen | |
|---|---|
| drupal6 – drupal7 | blogapi_update_6001() |
Add blogapi_files table to enable size restriction for BlogAPI file uploads.
This table was introduced in Drupal 6.4.
modules/
<?php
function blogapi_update_6001() {
$ret = array();
if (!db_table_exists('blogapi_files')) {
$schema = blogapi_schema();
db_create_table($ret, 'blogapi_files', $schema['blogapi_files']);
}
return $ret;
}
?>
Kommentare
Kommentar hinzufügen