13 lines
343 B
PHP
13 lines
343 B
PHP
<?php
|
|
if (!defined('_ECRIRE_INC_VERSION')){
|
|
return;
|
|
}
|
|
|
|
|
|
function bigform_declarer_tables_principales($tables_principales){
|
|
|
|
$tables_principales['spip_documents']['field']['protected'] = 'varchar(5) NOT NULL';
|
|
$tables_principales['spip_documents']['field']['fichier_origine'] = 'varchar(255) NOT NULL';
|
|
|
|
return $tables_principales;
|
|
}
|