chore: reformat application codes

This commit is contained in:
이상진 2025-07-10 12:21:17 +09:00
parent 7c020072bd
commit c23218388a
4 changed files with 26 additions and 30 deletions

View File

@ -1,10 +1,6 @@
package com.sangdol.demo
import jakarta.persistence.Entity
import jakarta.persistence.GeneratedValue
import jakarta.persistence.GenerationType
import jakarta.persistence.Id
import jakarta.persistence.Table
import jakarta.persistence.*
@Entity
@Table(name = "demo")

View File

@ -1,5 +1,5 @@
INSERT INTO demo(name, age) VALUES
('John Doe', 30),
INSERT INTO demo(name, age)
VALUES ('John Doe', 30),
('Jane Smith', 25),
('Alice Johnson', 28),
('Bob Brown', 35),