15 lines
162 B
MySQL
15 lines
162 B
MySQL
|
create table rusefi_tokens (
|
||
|
int user_id,
|
||
|
auth_token
|
||
|
|
||
|
);
|
||
|
|
||
|
create table rusefi_tunes (
|
||
|
int owner_id,
|
||
|
int cylinders,
|
||
|
float displacement,
|
||
|
vehicle_name
|
||
|
blob tune
|
||
|
|
||
|
);
|