Note that there are some explanatory texts on larger screens.

plurals
  1. POMagento Doesn't Run Sql Setup Script
    primarykey
    data
    text
    <p>Magento doesn't run installer script of my module.But setup script version is getting added in <code>core_resource</code> table.Here are my files</p> <p>Part of config.xml</p> <pre><code> &lt;config&gt; &lt;modules&gt; &lt;Company_Brands&gt; &lt;version&gt;1.0.0&lt;/version&gt; &lt;/Company_Brands&gt; &lt;/modules&gt; &lt;global&gt; &lt;models&gt; &lt;brands&gt; &lt;class&gt;Company_Brands_Model&lt;/class&gt; &lt;resourceModel&gt;brands_mysql4&lt;/resourceModel&gt; &lt;/brands&gt; &lt;brands_mysql4&gt; &lt;class&gt;Company_Brands_Model_Mysql4&lt;/class&gt; &lt;/brands_mysql4&gt; &lt;/models&gt; &lt;resources&gt; &lt;brands_setup&gt; &lt;setup&gt; &lt;module&gt;Company_Brands&lt;/module&gt; &lt;class&gt;Company_Brands_Model_Mysql4_Setup&lt;/class&gt; &lt;/setup&gt; &lt;connection&gt; &lt;use&gt;core_setup&lt;/use&gt; &lt;/connection&gt; &lt;/brands_setup&gt; &lt;brands_read&gt; &lt;connection&gt; &lt;use&gt;core_read&lt;/use&gt; &lt;/connection&gt; &lt;/brands_read&gt; &lt;brands_write&gt; &lt;connection&gt; &lt;use&gt;core_write&lt;/use&gt; &lt;/connection&gt; &lt;/brands_write&gt; &lt;/resources&gt; &lt;/global&gt; &lt;/config&gt; </code></pre> <p>app/code/local/Company/Brands/sql/brands_setup/mysql4-install-1.0.0.php</p> <pre><code>$installer = $this; $installer-&gt;startSetup(); $data = array( 'label' =&gt; 'Brands', 'type' =&gt; 'select' 'input' =&gt; 'text', 'global'=&gt; Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL, 'required'=&gt;false, 'is_configurable'=&gt;true, 'compareble'=&gt;true, 'filterable' =&gt;true, 'searchable'=&gt;true ); $installer-&gt;addAttribute('catalog_product','some_brands',$data); $installer-&gt;endSetup(); </code></pre> <p>app/code/local/Company/Brands/Model/Mysql4/Setup.php</p> <pre><code>class Company_Brands_Model_Mysql4_Setup extends Mage_Eav_Model_Entity_Setup { } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload