Skip to content

Commit

Permalink
use upper case for sql key word
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang Jiawei committed Jan 5, 2024
1 parent 2e65144 commit db5f1cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/archive/zkapp_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CREATE TABLE zkapp_field_array
, element_ids int[] NOT NULL
);

create INDEX idx_zkapp_field_array_element_ids ON zkapp_field_array(element_ids);
CREATE INDEX idx_zkapp_field_array_element_ids ON zkapp_field_array(element_ids);

/* Fixed-width arrays of algebraic fields, given as id's from
zkapp_field
Expand Down Expand Up @@ -83,7 +83,7 @@ CREATE TABLE zkapp_events
, element_ids int[] NOT NULL
);

create index idx_zkapp_events_element_ids ON zkapp_events(element_ids);
CREATE INDEX idx_zkapp_events_element_ids ON zkapp_events(element_ids);


/* field elements derived from verification keys */
Expand Down

0 comments on commit db5f1cd

Please sign in to comment.