Skip to content

Commit

Permalink
fix: RBAC509_registration table name
Browse files Browse the repository at this point in the history
  • Loading branch information
saibatizoku committed Sep 24, 2024
1 parent c3c6277 commit 313cb1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Index CIP-509 Registrations (Valid)
INSERT INTO cip509_registration (
-- Index RBAC 509 Registrations (Valid)
INSERT INTO RBAC509_registration (
chain_root,
transaction_id,
purpose,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::{db::index::queries::SizedBatch, settings::CassandraEnvVars};

/// RBAC Registration Indexing query
#[allow(dead_code)]
const INSERT_RBAC_QUERY: &str = include_str!("./cql/insert_rbac509.cql");
const INSERT_RBAC509_QUERY: &str = include_str!("./cql/insert_rbac509.cql");

/// Insert RBAC Registration Query Parameters
#[derive(SerializeRow, Debug)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Index of RBAC 509 registrations. Valid.
CREATE TABLE IF NOT EXISTS rbac509_registration (
CREATE TABLE IF NOT EXISTS RBAC509_registration (
-- Primary Key Data
chain_root blob, -- 32 Bytes of Chain Root.
transaction_id blob, -- 32 Bytes of Transaction Hash.
Expand Down

0 comments on commit 313cb1a

Please sign in to comment.