이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
jason
/
FPSMS-backend
보기
2
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
add two columns (timeSequence & complexity) to the db
master
kelvin.yau
3 일 전
부모
b5b8163e4e
커밋
9ced75ed0a
2개의 변경된 파일
과
12개의 추가작업
그리고
0개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
src/main/java/com/ffii/fpsms/modules/master/entity/Bom.kt
+6
-0
src/main/resources/db/changelog/changes/20251213_01_KelvinY/01_add_timeSequence_complexity_to_bom.sql
+ 6
- 0
src/main/java/com/ffii/fpsms/modules/master/entity/Bom.kt
파일 보기
@@ -26,6 +26,12 @@ open class Bom : BaseEntity<Long>() {
@Column
open var allergicSubstances: Int? = null
@Column
open var timeSequence: Int? = null
@Column
open var complexity: Int? = null
@JsonBackReference
@OneToOne
@JoinColumn(name = "itemId")
+ 6
- 0
src/main/resources/db/changelog/changes/20251213_01_KelvinY/01_add_timeSequence_complexity_to_bom.sql
파일 보기
@@ -0,0 +1,6 @@
-- liquibase formatted sql
-- changeset KelvinY:add_timeSequence_complexity_to_bom
ALTER TABLE `fpsmsdb`.`bom`
ADD COLUMN `timeSequence` INT NULL DEFAULT 0 AFTER `allergicSubstances`,
ADD COLUMN `complexity` INT NULL DEFAULT 0 AFTER `timeSequence`;
쓰기
미리보기
불러오는 중...
취소
저장