Renaming a car? #1938
-
Is there a way to easily rename a car? SQL statement would be fine, too; but I donˋt know the DB schema… Background: I sold my old M3 and received my new MY and want to keep the history of the old one, but the new one should be the first one on all the dashboards now. Unfortunately the new one has a name alphabetically after the old one… |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 1 reply
-
You might find #1224 helpful... |
Beta Was this translation helpful? Give feedback.
-
Also, please also vote on #1751 and/or if you're technical any comments on #1904 would be welcome. |
Beta Was this translation helpful? Give feedback.
-
Just for closing the loop here: the SQL commands for renaming a car would be:
Note, that |
Beta Was this translation helpful? Give feedback.
-
I think you had
|
Beta Was this translation helpful? Give feedback.
-
Good catch, fixed it above as well… |
Beta Was this translation helpful? Give feedback.
-
I think car renaming is auto-magically handled now? My car was renamed any I don't see the old name in |
Beta Was this translation helpful? Give feedback.
Just for closing the loop here: the SQL commands for renaming a car would be:
old_car_name
tonew_car_name
:Note, that
database
refers to the name of theDB
service in yourdocker-compose
config file; if you renamed this service, e.g., toteslamate-db
, you would also need to use the corresponding service name here:docker-compose exec -T teslamate-db ...