Skip to content

Commit

Permalink
beefier values for the logs
Browse files Browse the repository at this point in the history
Signed-off-by: Diego Andrés <[email protected]>
  • Loading branch information
DiegoAndresCortes committed Jul 16, 2021
1 parent 34c88fd commit 4b44b76
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Sources/Shop/Shop.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Shop
public static function initialize()
{
// Version and paths
self::$version = '4.1.2';
self::$version = '4.1.3';
self::$addonsdir = '/Shop/Integration/Addons/';
self::$itemsdir = '/shop_items/items/';
self::$modulesdir = '/Shop/Modules/';
Expand Down
46 changes: 23 additions & 23 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
],
[
'name' => 'price',
'type' => 'int',
'type' => 'mediumint',
'null' => false,
'default' => 0,
],
Expand Down Expand Up @@ -300,14 +300,14 @@
'columns' => [
[
'name' => 'id',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'auto' => true,
'null' => false,
],
[
'name' => 'userid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
Expand All @@ -325,7 +325,7 @@
],
[
'name' => 'tradecost',
'type' => 'int',
'type' => 'bigint',
'default' => 0,
'null' => false,
],
Expand Down Expand Up @@ -365,7 +365,7 @@
'columns' => [
[
'name' => 'catid',
'type' => 'smallint',
'type' => 'int',
'size' => 5,
'auto' => true,
'null' => false,
Expand Down Expand Up @@ -404,7 +404,7 @@
'columns' => [
[
'name' => 'id',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'auto' => true,
'null' => false,
Expand All @@ -417,26 +417,26 @@
],
[
'name' => 'invid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
[
'name' => 'userid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
[
'name' => 'sellerid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'default' => 0,
'null' => false,
],
[
'name' => 'amount',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
Expand Down Expand Up @@ -476,19 +476,19 @@
],
[
'name' => 'userid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
[
'name' => 'receiver',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
[
'name' => 'amount',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
Expand All @@ -500,7 +500,7 @@
],
[
'name' => 'invid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'default' => 0,
'null' => false,
Expand Down Expand Up @@ -539,26 +539,26 @@
'columns' => [
[
'name' => 'id',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'auto' => true,
'null' => false,
],
[
'name' => 'userid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
[
'name' => 'amount',
'type' => 'int',
'type' => 'bigint',
'size' => 10,
'null' => false,
],
[
'name' => 'fee',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'default' => 0,
'null' => false,
Expand Down Expand Up @@ -596,20 +596,20 @@
'columns' => [
[
'name' => 'id',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'auto' => true,
'null' => false,
],
[
'name' => 'userid',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
[
'name' => 'amount',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
Expand Down Expand Up @@ -648,7 +648,7 @@
],
[
'name' => 'id_member',
'type' => 'int',
'type' => 'mediumint',
'size' => 10,
'null' => false,
],
Expand Down Expand Up @@ -714,7 +714,7 @@
'{db_prefix}members',
[
'name' => 'shopMoney',
'type' => 'int',
'type' => 'mediumint',
'default' => 0,
]
);
Expand Down
2 changes: 1 addition & 1 deletion package-info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package-info xmlns="http://www.simplemachines.org/xml/package-info" xmlns:smf="http://www.simplemachines.org/">
<id>smftricks:shop</id>
<name>ST Shop</name>
<version>4.1.2</version>
<version>4.1.3</version>
<type>modification</type>
<install for="2.1 - 2.1.99, 2.1 RC3, 2.1 RC4">
<!-- Mod Readme -->
Expand Down

0 comments on commit 4b44b76

Please sign in to comment.