This commit is contained in:
long2ice
2020-05-12 19:33:21 +08:00
parent 75e7a46e85
commit 4e7e1626aa
11 changed files with 318 additions and 121 deletions

View File

@@ -5,24 +5,4 @@ from alice.backends import DDL
class MysqlDDL(DDL):
schema_generator_cls = MySQLSchemaGenerator
def drop_table(self):
pass
def add_column(self):
pass
def drop_column(self):
pass
def add_index(self):
pass
def drop_index(self):
pass
def add_fk(self):
pass
def drop_fk(self):
pass
DIALECT = "mysql"