Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
-- onetime setup for the api database
CREATE USER IF NOT EXISTS apiuser IDENTIFIED BY 'CHANGEME';
DROP DATABASE IF EXISTS api;
CREATE DATABASE IF NOT EXISTS api;
USE api;
GRANT INSERT, SELECT, UPDATE, DELETE ON api.* TO apiuser;
CREATE TABLE IF NOT EXISTS accounts (
id SMALLINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(25) NOT NULL,
password VARCHAR(60) NOT NULL,
email VARCHAR(25) NOT NULL
);