[PLUGINS] +clavettes et dependances
[lhc/web/clavette_www.git] / www / plugins / pages / base / pages_tables.php
1 <?php
2 /**
3 * Déclarer le champ supplémentaire sur spip_articles
4 *
5 * @plugin Pages Uniques
6 * @copyright 2013
7 * @author RastaPopoulos
8 * @licence GNU/GPL
9 * @package SPIP\Pages\Pipelines
10 * @link http://contrib.spip.net/Pages-uniques
11 */
12
13 if (!defined("_ECRIRE_INC_VERSION")) return;
14
15 function pages_declarer_tables_objets_sql($tables){
16
17 $tables['spip_articles']['field']['page'] = "VARCHAR(255) DEFAULT '' NOT NULL";
18 return $tables;
19
20 }
21
22 ?>