The UpgradeSchema will be run during module upgrade and its used to alter the table structure.
The module upgrade script will run when you run the following command line Continue reading UpgradeSchema Magento 2
The UpgradeSchema will be run during module upgrade and its used to alter the table structure.
The module upgrade script will run when you run the following command line Continue reading UpgradeSchema Magento 2
Some time its necessary to create DB tables and add data to tables. Mageto provides some classes using which you can create DB table structure or add data to tables. Following are the important classes
InstallSchema – This class can be used to setup DB structure when modules is instaled for the first time.
InstallData – This class can be used to load the initial data when modules is insttale for the first time. Continue reading SQL Setup Script Magento 2