Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/phpmd' into phpmd
Browse files Browse the repository at this point in the history
  • Loading branch information
sreichel committed Aug 31, 2023
2 parents c037399 + 73aba60 commit 5dfbc42
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Api/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<config>
<modules>
<Mage_Api>
<version>1.6.0.2</version>
<version>1.6.0.3</version>
</Mage_Api>
</modules>
<global>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php
/**
* OpenMage
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available at https://opensource.org/license/osl-3-0-php
*
* @category Mage
* @package Mage_Api
* @copyright Copyright (c) 2023 The OpenMage Contributors (https://www.openmage.org)
* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

/** @var Mage_Core_Model_Resource_Setup $this */
$this->startSetup();

$this->getConnection()->changeColumn(
$this->getTable('api/user'),
'lognum',
'lognum',
[
'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
'unsigned' => true,
'nullable' => false,
'default' => '0',
'comment' => 'Quantity of log ins'
]
);

$this->endSetup();

0 comments on commit 5dfbc42

Please sign in to comment.