mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-01 01:27:17 +00:00
29 lines
755 B
Python
29 lines
755 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class Migration(ABC):
|
|
"""
|
|
Abstract Migration class
|
|
This class is used to define the structure of a migration
|
|
Migration has a function is_migration_needed() that returns True or False
|
|
Migration has a function migrate() that does the migration
|
|
Migration has a function get_migration_name() that returns the migration name
|
|
Migration has a function get_migration_description() that returns the migration description
|
|
"""
|
|
|
|
@abstractmethod
|
|
def get_migration_name(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_migration_description(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def is_migration_needed(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def migrate(self):
|
|
pass
|