Skip to content

Commit

Permalink
Change handler column to blob
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin van Elst committed Nov 12, 2015
1 parent 7e35195 commit b8a6fbe
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/community/Jowens/JobQueue/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Jowens_JobQueue>
<version>0.4.0</version>
<version>0.5.0</version>
</Jowens_JobQueue>
</modules>
<global>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

$installer = $this;

$connection = $installer->getConnection();

$installer->startSetup();

$connection->modifyColumn(
$installer->getTable('jobqueue/job'),
'handler',
'BLOB NOT NULL'
);

$installer->endSetup();

0 comments on commit b8a6fbe

Please sign in to comment.