Advertisement
Guest User

bps_2020

a guest
Feb 26th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. CREATE TABLE `transaksi` (
  2. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  3. `jumlah` float DEFAULT NULL,
  4. `created` date DEFAULT NULL,
  5. `status` enum('in','out') DEFAULT NULL,
  6. PRIMARY KEY (`id`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  8.  
  9. <dependency>
  10. <groupId>com.zaxxer</groupId>
  11. <artifactId>HikariCP</artifactId>
  12. <version>2.7.2</version>
  13. </dependency>
  14.  
  15. <dependency>
  16. <groupId>mysql</groupId>
  17. <artifactId>mysql-connector-java</artifactId>
  18. <version>5.1.47</version>
  19. </dependency>
  20.  
  21. # MySQL
  22. spring.datasource.url=jdbc:mysql://localhost:3306/finance?useSSL=false
  23. spring.datasource.username=root
  24. spring.datasource.password=root
  25. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement