Merge pull request #18086 from daamien/18085_pgsql_alter_table_llx_c_ticket_category
FIX #18085: Migration 13 to 14 : Explicit cast when changing the type…
This commit is contained in:
commit
47db14570d
@ -428,6 +428,10 @@ create table llx_eventorganization_conferenceorboothattendee_extrafields
|
||||
ALTER TABLE llx_eventorganization_conferenceorboothattendee_extrafields ADD INDEX idx_conferenceorboothattendee_fk_object(fk_object);
|
||||
|
||||
ALTER TABLE llx_c_ticket_category ADD COLUMN public integer DEFAULT 0;
|
||||
|
||||
-- VPGSQL8.2 ALTER TABLE llx_c_ticket_category ALTER COLUMN pos TYPE INTEGER USING pos::INTEGER;
|
||||
-- VPGSQL8.2 ALTER TABLE llx_c_ticket_category ALTER COLUMN pos SET NOT NULL;
|
||||
-- VPGSQL8.2 ALTER TABLE llx_c_ticket_category ALTER COLUMN pos SET DEFAULT 0;
|
||||
ALTER TABLE llx_c_ticket_category MODIFY COLUMN pos integer DEFAULT 0 NOT NULL;
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user