sync
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
DROP TABLE `model_rate_limit`;
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -39,13 +39,3 @@ export const ModelTpmLimitTable = mysqlTable(
|
|||||||
},
|
},
|
||||||
(table) => [primaryKey({ columns: [table.id] })],
|
(table) => [primaryKey({ columns: [table.id] })],
|
||||||
)
|
)
|
||||||
|
|
||||||
export const ModelRateLimitTable = mysqlTable(
|
|
||||||
"model_rate_limit",
|
|
||||||
{
|
|
||||||
key: varchar("key", { length: 255 }).notNull(),
|
|
||||||
interval: varchar("interval", { length: 40 }).notNull(),
|
|
||||||
count: int("count").notNull(),
|
|
||||||
},
|
|
||||||
(table) => [primaryKey({ columns: [table.key, table.interval] })],
|
|
||||||
)
|
|
||||||
|
|||||||
Reference in New Issue
Block a user