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.
19 lines
341 B
19 lines
341 B
CREATE DATABASE IF NOT EXISTS positiondaflmusic;
|
|
|
|
CREATE USER $(USER)@'%' IDENTIFIED BY $(PASSWORD);
|
|
|
|
GRANT ALL PRIVILEGES ON * . * TO $(USER)@'%';
|
|
|
|
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
|
|
);
|
|
|
|
|
|
|