예제 #1
0
파일: __init__.py 프로젝트: tortoise/aerich
 def set_comment(self, model: "Type[Model]", field_describe: dict):
     raise NotSupportError("Alter column comment is unsupported in SQLite.")
예제 #2
0
파일: __init__.py 프로젝트: tortoise/aerich
 def alter_column_null(self, model: "Type[Model]", field_describe: dict):
     raise NotSupportError("Alter column null is unsupported in SQLite.")
예제 #3
0
파일: __init__.py 프로젝트: tortoise/aerich
 def modify_column(self,
                   model: "Type[Model]",
                   field_object: dict,
                   is_pk: bool = True):
     raise NotSupportError("Modify column is unsupported in SQLite.")
예제 #4
0
 def modify_column(self, model: "Type[Model]", field_object: Field):
     raise NotSupportError("Modify column is not support in SQLite.")
예제 #5
0
 def drop_column(self, model: "Type[Model]", column_name: str):
     raise NotSupportError("Drop column is not support in SQLite.")
예제 #6
0
 def rename_column(self, model: "Type[Model]", old_column_name,
                   field_object: Field):
     raise NotSupportError("Rename column is not support in SQLite.")