Add more sample data
This commit is contained in:
@@ -6,8 +6,107 @@ INSERT INTO BANKING_USER (ID, USERNAME, PASSWORD)
|
||||
VALUES (3, 'user3', '{bcrypt}$2a$10$TEMplrWsmM7TA8HxTV8tG..4jxbfkOiq34cwg4wW3RXPRg6KMBdPm');
|
||||
INSERT INTO BANKING_USER (ID, USERNAME, PASSWORD)
|
||||
VALUES (4, 'user4', '{bcrypt}$2a$10$1wGifm5b1N6uBL6Zpxn5tegsFNSyTV6iux5MI9ANuP0G5cliBcLWa');
|
||||
INSERT INTO BANKING_USER (ID, USERNAME, PASSWORD)
|
||||
VALUES (5, 'user5', '{bcrypt}$2a$10$Jd9YLaJBPbXPEiPM95Voa.gySjZcQHu9Fo/2KRLzE9UsINWzlfxOO');
|
||||
INSERT INTO BANKING_USER (ID, USERNAME, PASSWORD)
|
||||
VALUES (6, 'user6', '{bcrypt}$2a$10$LJa5p9sRZCi8mCm4oJhfH.Vn1625YPMODPRcxJ/D/948cfIB88scK');
|
||||
INSERT INTO BANKING_USER (ID, USERNAME, PASSWORD)
|
||||
VALUES (7, 'user7', '{bcrypt}$2a$10$w/CSC.FmoFEbGBJ5lPF3oe0gbZmo3n1wOQK9W50DbDHsly9NRoX4.');
|
||||
INSERT INTO BANKING_USER (ID, USERNAME, PASSWORD)
|
||||
VALUES (8, 'user8', '{bcrypt}$2a$10$L1RWBgjH0L.YJG/uyMhviubSxz8C.PnZJlviF6K/iueeDrWO.FSOy');
|
||||
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (1, 'Personal', 'LU375050297422074000', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USERS_ID)
|
||||
VALUES (1, 'Personal', 'LU584022594948990503', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (2, 'Work', 'LU907047173626189281', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (3, 'Checking', 'LU337685598868536287', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (4, 'Joint', 'LU840552586110383855', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (5, 'Primary', 'LU068976849336652168', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (6, 'Secondary', 'LU148716017016374383', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (7, 'Joy', 'LU798574254737992988', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (8, 'Holidays', 'LU881912185721376358', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (9, 'Personal', 'LU191013601444141763', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (10, 'Savings', 'LU710564368935005652', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (11, 'Personal', 'LU222549371173567471', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (12, 'Savings', 'LU261309808416076323', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (13, 'Work', 'LU654310230678616664', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (14, 'Expenses', 'LU231866912041681639', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (15, 'Personal', 'LU429127592687822778', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (16, 'Joint account', 'LU786522695111559649', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (17, 'Savings', 'LU259786109895524005', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (18, 'Pension', 'LU744005943189772712', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (19, 'Savings', 'LU130189044953642517', 'ENABLED');
|
||||
INSERT INTO BANK_ACCOUNT (ID, ACCOUNT_NAME, ACCOUNT_NUMBER, STATUS)
|
||||
VALUES (20, 'Trading', 'LU081651725326393823', 'ENABLED');
|
||||
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (1, 1);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (2, 1);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (2, 2);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (2, 3);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (3, 2);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (4, 2);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (4, 5);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (5, 7);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (6, 7);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (7, 8);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (8, 4);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (8, 3);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (9, 2);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (10, 6);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (11, 8);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (12, 5);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (13, 5);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (13, 8);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (13, 3);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (14, 4);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (15, 6);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (16, 5);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (16, 3);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (17, 7);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (18, 6);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (19, 2);
|
||||
INSERT INTO BANK_ACCOUNT_USERS (BANK_ACCOUNT_ID, USER_ID)
|
||||
VALUES (20, 8);
|
||||
|
||||
Reference in New Issue
Block a user