CREATE SCHEMA IF NOT EXISTS hendry_cartrack;
CREATE TABLE IF NOT EXISTS hendry_cartrack.car
(
id serial PRIMARY KEY,
brand VARCHAR(50),
model VARCHAR(50),
price NUMERIC(10,2),
created_on TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
UNIQUE(brand, model)
);
To be able to connect to your specific PostgreSQL databaase, please change the credentials in file dbstr.php
- Bearer token is need from md5 of hendry_cartrack
- List of API details can be found in the API readme