create table `email_templates` (`id` bigint unsigned not null auto_increment primary key, `template_name` varchar(191) not null, `subject` varchar(191) not null, `body` text not null, `variables` text not null, `created_at` timestamp null, `updated_at` timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci';
