Here i am creating upgradeData script that will add custom product attribute with yes and no options.
<?php namespace PHPCodez\Subscription\Setup; use Magento\Eav\Setup\EavSetup; use Magento\Eav\Setup\EavSetupFactory; use Magento\Framework\Setup\UpgradeDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; class upgradeData implements UpgradeDataInterface { private $eavSetupFactory; protected $logger; public function __construct(EavSetupFactory $eavSetupFactory,\Psr\Log\LoggerInterface $logger) { $this->eavSetupFactory = $eavSetupFactory; $this->logger = $logger; } public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { if (version_compare($context->getVersion(), '0.0.8', '<=')) { $this->logger->info("System - upgrading module - removing product attribute - subscripion_product"); $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]); $eavSetup->addAttribute( \Magento\Catalog\Model\Product::ENTITY, 'subscripion_product',[ 'type' => 'text', 'backend' => '', 'frontend' => '', 'label' => 'Enable Subscription', 'input' => 'select', 'class' => '', 'source' => 'Magento\Eav\Model\Entity\Attribute\Source\Boolean', 'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_GLOBAL, 'visible' => true, 'required' => true, 'user_defined' => false, 'default' => '', 'searchable' => false, 'filterable' => false, 'comparable' => false, 'visible_on_front' => false, 'used_in_product_listing' => true, 'unique' => false, 'apply_to' => '' ] ); } } }
This is giving Class does not exist error after opening from backend.