Question

Is there a way to run such a code at the launch of a module (once) to add fields in a table in the database

$setup = new Mage_Eav_Model_Entity_Setup ('core_setup');
$setup-> addAttribute ('customer', 'flavor', array (
'label' => 'Ice Cream Flavour'
'type' => 'varchar',
'input' => 'text',
'visible' => true,
'required' => true,
'position' => 1,
));

Thanks a lot for help.

Was it helpful?

Solution

You want to look into Magento Setup Resources. This is exactly what they were created for.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top