Commit 6786d7a2 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Doctrine ne supporte pas les apostrophes dans les commentaires SQL

parent 196285ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -239,7 +239,7 @@ WITH TMP(CATEG, NAME, SQL) AS (
    -- constraints
    --
    
    -- d'abord les FK
    -- les FK en premier
    select 'I_CONSTRAINT', constraint_name, 'ALTER TABLE ' || OWNER || '.' || table_name || ' drop CONSTRAINT ' || constraint_name || ';' || chr(10)
    from all_constraints
    where constraint_type = 'R'