Pizzaface / Alexa-Chromecast-Skill-2.0

Allows Amazon Alexa to control Google Chromecast - Designed for Raspberry Pi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

issue with build.sql

caicom98 opened this issue · comments

commented

Got some error while importing that AUTO_INCREMENT can only be done on keys. I assigned proper primary key to the table.

CREATE TABLE IF NOT EXISTS commands (
ID int(11) NOT NULL PRIMARY KEY,
...
...
ALTER TABLE commands
MODIFY ID int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,AUTO_INCREMENT=149;

Fixed! Thanks!