diff --git a/resources/sql/autopatches/20150727.heraldaction.1.sql b/resources/sql/autopatches/20150727.heraldaction.1.sql new file mode 100644 index 0000000000..f4cbf19504 --- /dev/null +++ b/resources/sql/autopatches/20150727.heraldaction.1.sql @@ -0,0 +1,2 @@ +RENAME TABLE {$NAMESPACE}_herald.herald_actionrecord + TO {$NAMESPACE}_herald.herald_action; diff --git a/src/applications/herald/storage/HeraldActionRecord.php b/src/applications/herald/storage/HeraldActionRecord.php index 1ad4721b21..dfbee3b79d 100644 --- a/src/applications/herald/storage/HeraldActionRecord.php +++ b/src/applications/herald/storage/HeraldActionRecord.php @@ -1,29 +1,37 @@ array( 'target' => self::SERIALIZATION_JSON, ), self::CONFIG_TIMESTAMPS => false, self::CONFIG_COLUMN_SCHEMA => array( 'action' => 'text255', 'target' => 'text', ), self::CONFIG_KEY_SCHEMA => array( 'ruleID' => array( 'columns' => array('ruleID'), ), ), ) + parent::getConfiguration(); } }