We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27f1c8c commit e881e06Copy full SHA for e881e06
scripts/create_schema.sql
@@ -22,10 +22,11 @@ CREATE INDEX account_owner ON account (owner);
22
CREATE INDEX account_slot ON account (slot);
23
24
-- The table storing slot information
25
+-- Longest for status: first_shred_received (20 chars)
26
CREATE TABLE slot (
27
slot BIGINT PRIMARY KEY,
28
parent BIGINT,
- status VARCHAR(16) NOT NULL,
29
+ status VARCHAR(20) NOT NULL,
30
updated_on TIMESTAMP NOT NULL
31
);
32
0 commit comments