Inside Setup folder add your file:
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $installer = $setup; $installer->startSetup(); $orderTable = $installer→getTable('sales_order'); $connection = $installer→getConnection(); $connection->addColumn( $orderTable, 'dec_number', [ 'type' => \Magento\Framework\DB\Ddl\Table::TYPE_DECIMAL, 'length' => '12,4', 'nullable' => true, 'comment' => 'Decimal number' ] ); }
Done
Comments