restgomysql
restgomysql copied to clipboard
please provide sample mysql schema
Hi, tried making use of your example, it would help if you provide sample mysql schema..
Thanks
~~Same here, I have no idea how your tables are set up.~~ See #8 :+1:
Update: I think I reverse engineered the schema, the following should net you a usable db, PR coming soon :smile: :
create database farm;
use farm;
create table pandas (ID int NOT NULL AUTO_INCREMENT, name varchar(20), primary key (ID));