소스 검색

fix: align spacing in Tag model fields for consistency

Dave 8 시간 전
부모
커밋
2069f16ec4
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      prisma/mongo/schema/tag.prisma

+ 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])