Changes between Initial Version and Version 1 of Ticket #25476, comment 8


Ignore:
Timestamp:
Oct 2, 2015, 8:57:49 PM (9 years ago)
Author:
Tim Graham

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25476, comment 8

    initial v1  
    11This schema reproduces the problem for me:
    22
    3 {{{CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
     3{{{
     4CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
    45 COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
    56 SET search_path = public, pg_catalog;
     
    3132    ADD CONSTRAINT things_sibling_fkey FOREIGN KEY (sibling) REFERENCES
    3233    children(idx) ON DELETE CASCADE;
     34}}}
    3335
     36{{{
    3437 # This is an auto-generated Django model module.
    3538 # You'll have to do the following manually to clean this up:
     
    5659
    5760class Things(models.Model):
     61}}}
     62
     63{{{
    5864Traceback (most recent call last):
    5965  File "./manage.py", line 10, in <module>
Back to Top