We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b084f64 commit ee29ee5Copy full SHA for ee29ee5
src/main/java/land/leets/global/config/DatabaseSetup.java
@@ -16,5 +16,8 @@ public class DatabaseSetup implements ApplicationRunner {
16
public void run(ApplicationArguments args) throws Exception {
17
jdbcTemplate.execute("ALTER DATABASE leets CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci");
18
jdbcTemplate.execute("ALTER TABLE portfolios CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci");
19
+
20
+ jdbcTemplate.execute("DROP TABLE contributors");
21
+ jdbcTemplate.execute("DROP TABLE portfolios");
22
}
23
0 commit comments