Skip to content

Commit 7cce708

Browse files
song-cc-rockfit2-zhao
authored andcommitted
fix: Modify content field length
1 parent 7adbc70 commit 7cce708

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

backend/crm/src/main/resources/migration/1.4.0/ddl/V1.4.0_2__ga_ddl.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,9 @@ CREATE TABLE product_price_field_blob
278278
CREATE INDEX idx_resource_id ON product_price_field_blob (resource_id ASC);
279279
CREATE INDEX idx_ref_sub_id ON product_price_field_blob (ref_sub_id ASC);
280280

281+
-- modify record, plan content field length (3000)
282+
ALTER TABLE follow_up_record MODIFY COLUMN content VARCHAR(3000) NOT NULL COMMENT '跟进内容';
283+
ALTER TABLE follow_up_plan MODIFY COLUMN content VARCHAR(3000) NOT NULL COMMENT '跟进内容';
281284

282285
-- set innodb lock wait timeout to default
283286
SET SESSION innodb_lock_wait_timeout = DEFAULT;

0 commit comments

Comments
 (0)