ソースを参照

Merge remote-tracking branch 'origin/production' into production

production
CANCERYS\kw093 1ヶ月前
コミット
078965686f
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      src/main/resources/db/changelog/changes/20260430_01_2fi/01_create_logistic_and_alter_truck.sql

+ 4
- 0
src/main/resources/db/changelog/changes/20260430_01_2fi/01_create_logistic_and_alter_truck.sql ファイルの表示

@@ -1,5 +1,7 @@
-- liquibase formatted sql
-- changeset 2fi:20260430_01_create_logistic
-- preconditions onFail:MARK_RAN
-- precondition-sql-check expectedResult:0 SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = DATABASE() AND table_name = 'logistic'

CREATE TABLE `logistic`
(
@@ -18,6 +20,8 @@ CREATE TABLE `logistic`
);

-- changeset 2fi:20260430_02_truck_district_reference_to_string
-- preconditions onFail:MARK_RAN
-- precondition-sql-check expectedResult:0 SELECT COUNT(*) FROM information_schema.columns WHERE table_schema = DATABASE() AND table_name = 'truck' AND column_name = 'districtReference' AND data_type = 'varchar' AND character_maximum_length = 255

ALTER TABLE `truck`
MODIFY COLUMN `districtReference` VARCHAR(255) NULL;

読み込み中…
キャンセル
保存