浏览代码

Update 001_initial_schema.py

Timothy J. Baek 1 年之前
父节点
当前提交
b76e934140
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      backend/apps/web/internal/migrations/001_initial_schema.py

+ 4 - 4
backend/apps/web/internal/migrations/001_initial_schema.py

@@ -51,7 +51,7 @@ def migrate(migrator: Migrator, database: pw.Database, *, fake=False):
     class Chat(pw.Model):
         id = pw.CharField(max_length=255, unique=True)
         user_id = pw.CharField(max_length=255)
-        title = pw.CharField(max_length=255)
+        title = pw.CharField()
         chat = pw.TextField()
         timestamp = pw.DateField()
 
@@ -74,8 +74,8 @@ def migrate(migrator: Migrator, database: pw.Database, *, fake=False):
         id = pw.AutoField()
         collection_name = pw.CharField(max_length=255, unique=True)
         name = pw.CharField(max_length=255, unique=True)
-        title = pw.CharField(max_length=255)
-        filename = pw.CharField(max_length=255)
+        title = pw.CharField()
+        filename = pw.CharField()
         content = pw.TextField(null=True)
         user_id = pw.CharField(max_length=255)
         timestamp = pw.DateField()
@@ -99,7 +99,7 @@ def migrate(migrator: Migrator, database: pw.Database, *, fake=False):
         id = pw.AutoField()
         command = pw.CharField(max_length=255, unique=True)
         user_id = pw.CharField(max_length=255)
-        title = pw.CharField(max_length=255)
+        title = pw.CharField()
         content = pw.TextField()
         timestamp = pw.DateField()