describe('migrationFileTemplate', () => {
    it('should return the file content for the model table migration', async () => {
        const generatedContent = migrationFileTemplate('posts');
        const exampleContent = await readFile(migrationFileExampleFilePath, {
            encoding: 'utf8',