-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
I installed the docker version of TeslaETA and I cannot get it to work, I'm using the teslamateapi back end.
The error that I keep getting is:
sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) duplicate column name: carid
Attached is the full log from docker logs.
Querying the SQLite database I don't get almost anything from it:
sqlite> .tables
alembic_version share
sqlite> select * from share;
sqlite> select * from alembic_version;
sqlite>
Checking with sqlite-utils
sqlite-utils schema data/service.db
CREATE TABLE share (
shortuuid TEXT(22) NOT NULL,
lat FLOAT,
lng FLOAT,
expiry INTEGER NOT NULL,
carid INTEGER,
PRIMARY KEY (shortuuid),
UNIQUE (shortuuid)
);
CREATE TABLE alembic_version (
version_num VARCHAR(32) NOT NULL,
CONSTRAINT alembic_version_pkc PRIMARY KEY (version_num)
);
Any help would be appreciated, thanks.
Metadata
Metadata
Assignees
Labels
No labels