You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create database loopback_benchmarks;
use loopback_benchmarks;
create table if not exists Todo(
id INT(11) NOT NULL AUTO_INCREMENT,
content VARCHAR(45),
PRIMARY KEY (id)
);