mirror of
https://gitlab.com/manzerbredes/paper-lowrate-iot.git
synced 2025-04-29 08:27:48 +00:00
Add analysis script
This commit is contained in:
parent
1ab4a6a97a
commit
7c9410246f
23 changed files with 171289 additions and 4 deletions
8
g5k_bak/setup-mysql.sql
Normal file
8
g5k_bak/setup-mysql.sql
Normal file
|
@ -0,0 +1,8 @@
|
|||
create DATABASE IF NOT EXISTS experiment;
|
||||
use experiment;
|
||||
create TABLE IF NOT EXISTS temperature (id INTEGER,stamp INTEGER, val INTEGER);
|
||||
|
||||
use mysql;
|
||||
CREATE USER 'user'@'%' IDENTIFIED BY 'mysql';
|
||||
GRANT ALL ON experiment.* TO 'user'@'%';
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue