loan select
This commit is contained in:
@@ -65,6 +65,19 @@ INSERT INTO loan_offers (
|
||||
|
||||
|
||||
|
||||
CREATE TABLE loan_select (
|
||||
id SERIAL,
|
||||
uid uuid DEFAULT uuid_generate_v4(),
|
||||
loan VARCHAR(25) NOT NULL,
|
||||
bvn VARCHAR(12) NOT NULL,
|
||||
added timestamp without time zone DEFAULT now()
|
||||
);
|
||||
ALTER TABLE ONLY loan_select
|
||||
ADD CONSTRAINT loan_select_id_key UNIQUE (id);
|
||||
|
||||
|
||||
|
||||
|
||||
{"cid": "425611f2-c692-4404-b93d-76ca7a5ce00", "description": "100,000 Naira for 30 Days" , "active" : 1 },
|
||||
{"cid": "425611f2-c692-4404-b93d-76ca7a5ce01", "description": "300,000 Naira for 60 Days" , "active" : 1 },
|
||||
{"cid": "425611f2-c692-4404-b93d-76ca7a5ce02", "description": "900,000 Naira for 90 Days" , "active" : 1 },
|
||||
|
||||
Reference in New Issue
Block a user