Эх сурвалжийг харах

fix: align spacing in Tag model fields for consistency

Dave 8 цаг өмнө
parent
commit
2069f16ec4

+ 2 - 2
prisma/mongo/schema/tag.prisma

@@ -9,8 +9,8 @@ model Tag {
   seq         Int        @default(0)        // 排序
   status      Int        @default(1)        // 状态 0: 禁用; 1: 启用
 
-  createAt  BigInt     @default(0)          // 创建时间
-  updateAt  BigInt     @default(0)          // 更新时间
+  createAt    BigInt     @default(0)          // 创建时间
+  updateAt    BigInt     @default(0)          // 更新时间
 
   // Relations
   channel     Channel    @relation(fields: [channelId], references: [id])