init
This commit is contained in:
28
alice/backends/mysql/__init__.py
Normal file
28
alice/backends/mysql/__init__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
from tortoise.backends.mysql.schema_generator import MySQLSchemaGenerator
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user