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

An extra parenthesis appears on line 65 of the qiandao.sql file. #126

Open
wax8280 opened this issue Mar 13, 2019 · 1 comment
Open

An extra parenthesis appears on line 65 of the qiandao.sql file. #126

wax8280 opened this issue Mar 13, 2019 · 1 comment

Comments

@wax8280
Copy link

wax8280 commented Mar 13, 2019

-- -----------------------------------------------------
-- Table `qiandao`.`tpl`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `qiandao`.`tpl` (
  `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
  `userid` INT UNSIGNED NULL,
  `siteurl` VARCHAR(256) NULL,
  `sitename` VARCHAR(128) NULL,
  `banner` VARCHAR(1024) NULL,
  `disabled` TINYINT(1) NOT NULL DEFAULT 0,
  `public` TINYINT(1) NOT NULL DEFAULT 0,
  `lock` TINYINT(1) NOT NULL DEFAULT 0,
  `fork` INT UNSIGNED NULL,
  `har` MEDIUMBLOB NULL,
  `tpl` MEDIUMBLOB NULL,
  `variables` TEXT NULL,
  `interval` INT UNSIGNED NULL,
  `note` VARCHAR(1024) NULL,
  `success_count` INT UNSIGNED NOT NULL DEFAULT 0,
  `failed_count` INT UNSIGNED NOT NULL DEFAULT 0,
  `last_success` INT UNSIGNED NULL,
  `ctime` INT UNSIGNED NOT NULL,
  `mtime` INT UNSIGNED NOT NULL,
  `atime` INT UNSIGNED NOT NULL,
  PRIMARY KEY (`id`),
  INDEX `ix_siteurl` (`siteurl` ASC),
  INDEX `ix_sitename` (`sitename` ASC),
  INDEX `ix_public` (`public` ASC)),
  INDEX `ix_userid` (`userid`))
ENGINE = MyISAM
DEFAULT CHARACTER SET = utf8;

An extra parenthesis appears on line 65 of the qiandao.sql file.

@KyonCN
Copy link

KyonCN commented Mar 15, 2019

65行的sql语句是错的

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants