Revisiting the appeals table
The SBA database now contains a table for storing loan applicant appeal requests. The table contains only a PRIMARY KEY
and a text column for the appeal. It is useful to track additional information such as when the appeal was received, whether or not the decision was reversed after the appeal, and the date when the appeal was reconsidered. You will define a new version of the appeals table to capture this information.
Cet exercice fait partie du cours
Creating PostgreSQL Databases
Instructions
- Add a new column,
received_on
, which captures the date and time when the appeal was received. - Add an
approved_on_appeal
column to indicate if the loan decision was changed due to the appeal. (This field will default to NULL to indicate that no new decision has yet been reached.) - Add a
reviewed
column which stores the date when the appeal was reviewed.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
CREATE TABLE appeal (
id SERIAL PRIMARY KEY,
content TEXT NOT NULL,
-- Add received_on column
___ ___ DEFAULT CURRENT_TIMESTAMP,
-- Add approved_on_appeal column
___ ___ DEFAULT NULL,
-- Add reviewed column
___ ___
);