Skip to content

Commit

Permalink
wip: disable weights schema
Browse files Browse the repository at this point in the history
  • Loading branch information
steinerkelvin committed Oct 11, 2024
1 parent 3e1d1b7 commit 64bb3b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/db/src/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@ export const governanceNotificationSchema = createTable(
},
);

export const computedModuleWeights = createTable("computed_weights", {
/**
export const computedModuleWeights = createTable("computed_module_weights", {
id: serial("id").primaryKey(),
atBlock: integer("at_block").notNull(),
Expand Down Expand Up @@ -419,3 +420,4 @@ export const computedSubnetWeights = createTable("computed_subnet_weights", {
createdAt: timestamp("created_at").defaultNow().notNull(),
});
*/

0 comments on commit 64bb3b0

Please sign in to comment.