Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 364 Bytes

File metadata and controls

25 lines (16 loc) · 364 Bytes

🐱 Url Catter

Cat ate your url and make it shorter...

🧰 Database Configuration

Create database

CREATE DATABASE url_catter;

Create user

CREATE USER 'catter'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON url_catter.* TO 'catter'@'localhost';

Enable events

SET GLOBAL event_scheduler=ON;