This website works better with JavaScript.
Home
Explore
Help
Sign In
jason
/
FPSMS-backend
Watch
2
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix
production
kelvin.yau
1 month ago
parent
9491f0f32c
commit
042828d96f
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save