Skip to content

Commit

Permalink
Add description to testdata
Browse files Browse the repository at this point in the history
  • Loading branch information
Merovius committed Sep 12, 2015
1 parent 8c9af9a commit d78706c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions testdata.sql
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
INSERT INTO users (user_id, name, password) VALUES (1, 'Merovius', '$2a$10$itZjdNwMSxCRVXepc61mue2DybeIPAqx/7pia4iONZluluiRdIVmq');
INSERT INTO users (user_id, name, password) VALUES (2, 'Koebi', '$2a$10$6.LdtTXyxK9o13Qi6u97ceQNMbf.rYiO8IlQMCdIWfBEoREAnwlWO');

INSERT INTO cards (card_id, user_id) VALUES (x'61616161', 1);
INSERT INTO cards (card_id, user_id) VALUES (x'61616162', 1);
INSERT INTO cards (card_id, user_id) VALUES (x'62616161', 2);
INSERT INTO cards (card_id, user_id) VALUES (x'62616162', 2);
INSERT INTO cards (card_id, user_id, description) VALUES (x'61616161', 1, '');
INSERT INTO cards (card_id, user_id, description) VALUES (x'61616162', 1, '');
INSERT INTO cards (card_id, user_id, description) VALUES (x'62616161', 2, '');
INSERT INTO cards (card_id, user_id, description) VALUES (x'62616162', 2, '');

INSERT INTO transactions (user_id, card_id, time, amount, kind) VALUES (1, NULL, '2015-04-06 22:59:03', 1000, 'Aufladung');
INSERT INTO transactions (user_id, card_id, time, amount, kind) VALUES (1, x'61616161', '2015-04-06 23:05:27', -100, 'Kartenswipe');
Expand Down

0 comments on commit d78706c

Please sign in to comment.