Mercurial > defr > drupal > ad
diff ad.install @ 2:e5584a19768b ad
maj module ad
author | sly |
---|---|
date | Wed, 15 Apr 2009 07:58:32 +0000 |
parents | 948362c2a207 |
children |
line wrap: on
line diff
--- a/ad.install Thu Apr 02 15:28:21 2009 +0000 +++ b/ad.install Wed Apr 15 07:58:32 2009 +0000 @@ -1,5 +1,5 @@ <?php -// $Id: ad.install,v 1.2.2.4.2.27.2.7.2.3 2009/03/27 20:11:13 jeremy Exp $ +// $Id: ad.install,v 1.2.2.4.2.27.2.7.2.4 2009/04/03 17:01:02 jeremy Exp $ /** * @file @@ -182,6 +182,13 @@ 'default' => 0, 'description' => 'Count of actions triggered.', ), + 'extra' => array( + 'type' => 'varchar', + 'length' => 255, + 'not null' => TRUE, + 'default' => '', + 'description' => 'Alow add-on modules to provide additional statistics granularity.', + ), ), 'primary key' => array('sid'), 'indexes' => array( @@ -190,6 +197,7 @@ 'action' => array('action'), 'adgroup' => array('adgroup'), 'hostid' => array('hostid'), + 'extra' => array('extra'), ), ); @@ -271,6 +279,13 @@ 'default' => 0, 'description' => 'Date when action was made.', ), + 'extra' => array( + 'type' => 'varchar', + 'length' => 255, + 'not null' => TRUE, + 'default' => '', + 'description' => 'Alow add-on modules to provide additional statistics granularity.', + ), ), 'primary key' => array('cid'), 'indexes' => array( @@ -281,6 +296,7 @@ 'adgroup' => array('adgroup'), 'hostid' => array('hostid'), 'url' => array('url'), + 'extra' => array('extra'), ), );