aboutsummaryrefslogtreecommitdiffstats
path: root/test/mysqlerl_SUITE_data
diff options
context:
space:
mode:
Diffstat (limited to 'test/mysqlerl_SUITE_data')
-rw-r--r--test/mysqlerl_SUITE_data/table-data.sql11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/mysqlerl_SUITE_data/table-data.sql b/test/mysqlerl_SUITE_data/table-data.sql
deleted file mode 100644
index 410712f..0000000
--- a/test/mysqlerl_SUITE_data/table-data.sql
+++ /dev/null
@@ -1,11 +0,0 @@
-DROP TABLE IF EXISTS user;
-
-CREATE TABLE user (
- username VARCHAR(20) PRIMARY KEY NOT NULL,
- password VARCHAR(64)
-);
-
-INSERT INTO user (username, password)
- VALUES ('bjc', MD5('test'));
-INSERT INTO user (username, password)
- VALUES ('siobain', MD5('test2'));