Skip to content

Commit

Permalink
Merge branch 'fix/likes-subtype' into feature/new-session-class
Browse files Browse the repository at this point in the history
  • Loading branch information
mystralkk committed Jun 22, 2019
2 parents 4ce62eb + 70427f6 commit 5cba3d3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions sql/mysql_tableanddata.php
Expand Up @@ -196,6 +196,7 @@
CREATE TABLE {$_TABLES['likes']} (
lid INT(11) NOT NULL AUTO_INCREMENT,
type varchar(30) NOT NULL,
subtype varchar(30) NOT NULL DEFAULT '',
id varchar(30) NOT NULL,
uid MEDIUMINT NOT NULL,
ipaddress VARCHAR(39) NOT NULL,
Expand Down
1 change: 1 addition & 0 deletions sql/pgsql_tableanddata.php
Expand Up @@ -195,6 +195,7 @@
CREATE TABLE {$_TABLES['likes']} (
lid SERIAL NOT NULL,
type varchar(30) NOT NULL,
subtype varchar(30) NOT NULL DEFAULT '',
id varchar(30) NOT NULL,
uid smallint NOT NULL,
ipaddress VARCHAR(39) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion sql/updates/mysql_2.2.0_to_2.2.1.php
Expand Up @@ -27,7 +27,7 @@
CREATE TABLE {$_TABLES['likes']} (
lid INT(11) NOT NULL AUTO_INCREMENT,
type varchar(30) NOT NULL,
subtype varchar(30) NOT NULL,
subtype varchar(30) NOT NULL DEFAULT '',
id varchar(30) NOT NULL,
uid MEDIUMINT NOT NULL,
ipaddress VARCHAR(39) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion sql/updates/pgsql_2.2.0_to_2.2.1.php
Expand Up @@ -27,7 +27,7 @@
CREATE TABLE {$_TABLES['likes']} (
lid INT(11) NOT NULL AUTO_INCREMENT,
type varchar(30) NOT NULL,
subtype varchar(30) NOT NULL,
subtype varchar(30) NOT NULL DEFAULT '',
id varchar(30) NOT NULL,
uid MEDIUMINT NOT NULL,
ipaddress VARCHAR(39) NOT NULL,
Expand Down

0 comments on commit 5cba3d3

Please sign in to comment.