diff options
author | Mateus Cruz <mateuscolvr@gmail.com> | 2024-02-05 11:06:46 -0300 |
---|---|---|
committer | Mateus Cruz <mateuscolvr@gmail.com> | 2024-02-05 11:06:46 -0300 |
commit | 8878b1d92bdd8ee9b51ecde7e9cc88f62f264841 (patch) | |
tree | 46d6c47dfc820689baa552d97255adeda4c98b15 /script.sql | |
parent | 5a2f5bf9a12b270e15757df48afeb1c1db5b34b3 (diff) |
move routes handler module to its own file
Diffstat (limited to 'script.sql')
-rw-r--r-- | script.sql | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,8 +11,8 @@ CREATE TABLE transactions ( client_id INTEGER REFERENCES clients, value INTEGER NOT NULL, type transaction_type NOT NULL, - description VARCHAR(10) NOT NULL, - created_at TIMESTAMP NOT NULL DEFAULT NOW() + description VARCHAR(255) NOT NULL, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() ); CREATE TABLE balances ( |