1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 16:45:16 +00:00

Ready to implement migration

This commit is contained in:
2020-05-25 18:39:57 +02:00
parent a3f0b86fea
commit 26ff8dfdff
3 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,20 @@
/**
* List of currently available migrations
*
* @author Pierre Hubert
*/
interface Migration {
id: string,
func: () => Promise<void>
}
export const MigrationsList : Migration[] = [
// Account image migration (files -> database, May 2020)
{
id: "account_image_2020",
func: undefined
}
]