Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fatal error after installation, if devlog is installed #10

Merged
merged 1 commit into from
Feb 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Table structure for table 'tx_belinks_link'
#
CREATE TABLE tx_belinks_link (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,

cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
Expand All @@ -13,7 +13,7 @@ CREATE TABLE tx_belinks_link (

title varchar(255) DEFAULT '' NOT NULL,
type int(11) unsigned DEFAULT '0' NOT NULL,
url mediumtext DEFAULT '' NOT NULL,
url mediumtext NOT NULL,
icon blob NOT NULL,
authentication varchar(10) DEFAULT '' NOT NULL,
parent varchar(30) DEFAULT '0' NOT NULL,
Expand Down