You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dafl_music/Sources/db_script/sql/location.sql

19 lines
339 B

CREATE DATABASE IF NOT EXISTS positiondaflmusic;
CREATE USER 'dafldev'@'%' IDENTIFIED BY 'wrap;
GRANT ALL PRIVILEGES ON * . * TO 'dafldev'@'%';
FLUSH PRIVILEGES;
CREATE TABLE gps (
id varchar(30) PRIMARY KEY,
latitude double NOT NULL,
longitude double NOT NULL,
idMusic varchar(100) NOT NULL,
dateLog datetime NOT NULL
);