Smile\ElasticsuiteThesaurus\Setup\UpgradeSchema::appendIsActiveColumn PHP Method

appendIsActiveColumn() private method

Add an "is_active" column to the Thesaurus table.
private appendIsActiveColumn ( Magento\Framework\Setup\SchemaSetupInterface $setup )
$setup Magento\Framework\Setup\SchemaSetupInterface Setup instance
    private function appendIsActiveColumn(SchemaSetupInterface $setup)
    {
        $setup->getConnection()->addColumn($setup->getTable(ThesaurusInterface::TABLE_NAME), ThesaurusInterface::IS_ACTIVE, ['type' => \Magento\Framework\DB\Ddl\Table::TYPE_SMALLINT, 'nullable' => false, 'default' => 1, 'comment' => 'If the Thesaurus is active']);
    }