getting file size for all dict files to be downloaded. coming to be 400mb or so.
[worddb.git] / libs / dmigrations / migrations.py
blob1932100259218b1d54c098eb585ac4aaff31fe1c
1 class BaseMigration(object):
2 def up(self):
3 raise NotImplementedError
5 def down(self):
6 raise NotImplementedError