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 USER 'lafrise'@'localhost' IDENTIFIED BY 'lafrise';
CREATE DATABASE lafrise;
GRANT ALL PRIVILEGES ON lafrise.* TO 'lafrise'@'localhost';
USE lafrise;
CREATE TABLE events(id int NOT NULL AUTO_INCREMENT, name VARCHAR(500), description VARCHAR(4000) NOT NULL, url VARCHAR(500), source VARCHAR(200) NOT NULL, date DATE NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB DEFAULT CHARSET=utf8;