Changes between Initial Version and Version 1 of Ticket #25476, comment 8
- Timestamp:
- Oct 2, 2015, 8:57:49 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25476, comment 8
initial v1 1 1 This schema reproduces the problem for me: 2 2 3 {{{CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; 3 {{{ 4 CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; 4 5 COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; 5 6 SET search_path = public, pg_catalog; … … 31 32 ADD CONSTRAINT things_sibling_fkey FOREIGN KEY (sibling) REFERENCES 32 33 children(idx) ON DELETE CASCADE; 34 }}} 33 35 36 {{{ 34 37 # This is an auto-generated Django model module. 35 38 # You'll have to do the following manually to clean this up: … … 56 59 57 60 class Things(models.Model): 61 }}} 62 63 {{{ 58 64 Traceback (most recent call last): 59 65 File "./manage.py", line 10, in <module>