Skip to content

Commit 63f5b0b

Browse files
committed
fix: schema
1 parent ed6b7b5 commit 63f5b0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

db/schema.postgre.sql

+1-2
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,6 @@ CREATE TABLE
205205
_000001_total_balance numeric(39) DEFAULT 0,
206206
_000001_below_total_balance numeric(39) DEFAULT 0,
207207
_1000000_account_count integer DEFAULT 0,
208-
_1000000_account_count integer DEFAULT 0,
209-
_100000_account_count integer DEFAULT 0,
210208
_100000_account_count integer DEFAULT 0,
211209
_10000_account_count integer DEFAULT 0,
212210
_1000_account_count integer DEFAULT 0,
@@ -219,6 +217,7 @@ CREATE TABLE
219217
_00001_account_count integer DEFAULT 0,
220218
_000001_account_count integer DEFAULT 0,
221219
_000001_below_account_count integer DEFAULT 0,
220+
_zero_account_count integer DEFAULT 0,
222221
timestamp integer NOT NULL,
223222
timestamp_utc timestamp without time zone NOT NULL,
224223
CONSTRAINT unique_rollup_daily UNIQUE (timestamp)

db/schema.sql

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ CREATE TABLE
211211
`_00001_account_count` int (11) DEFAULT 0,
212212
`_000001_account_count` int (11) DEFAULT 0,
213213
`_000001_below_account_count` int (11) DEFAULT 0,
214+
`_zero_account_count` int (11) DEFAULT 0,
214215
`timestamp` int (11) DEFAULT NULL,
215216
`timestamp_utc` datetime DEFAULT NULL,
216217
UNIQUE KEY `timestamp` (`timestamp`)

0 commit comments

Comments
 (0)