Migrated all models to string ids

This commit is contained in:
2023-11-13 12:28:07 +01:00
parent 5e4c7e0168
commit 2f03ee334b
4 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ import {DataTypes, InferAttributes, InferCreationAttributes, Model} from "sequel
export interface IShortenedLink extends Model<InferAttributes<IShortenedLink>, InferCreationAttributes<IShortenedLink>> {
shortenedId?: string
originalUrl: string
clientId?: number
clientId?: string
clicks?: number
}