Giter VIP home page Giter VIP logo

Comments (2)

simone avatar simone commented on June 27, 2024

Thanks for the feedback.

On Tue, Apr 23, 2013 at 10:51 PM, menelike [email protected] wrote:

Hello,

currently an update on the parent table doesn't update the children e.g.
in mysql it results in "Cannot delete or update a parent row". Deletes work
(warning in the admin menu doesn't include the children). Setting ON UPDATE
CASCADE on the foreign key in mysql does the job, but breaks the concept of
django with emulating the cascades.

Besides: Great work simone, you've got the only working compound PK
solution working.

from compositekey import db
from django.db import models

class Blog(models.Model):
id = db.MultiFieldPK("title", "author")
title = models.CharField(max_length=100)
author = models.CharField(max_length=100)

class Meta:
    app_label = 'foo'

class Post(models.Model):
post = models.CharField(max_length=100)
blog = models.ForeignKey(Blog, to_field="id",
fields_ext={
"author": {"db_column" :"author"},
"title" : {"db_column" :"title"},
})
class Meta:
app_label = 'foo'

CREATE TABLE IF NOT EXISTS solar_post (
id int(11) NOT NULL AUTO_INCREMENT,
title varchar(100) NOT NULL,
author varchar(100) NOT NULL,
post varchar(100) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY bar (title,author),
KEY solar_post_841a7e28 (title),
KEY solar_post_a5d5a658 (author)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;

#OLD:
#ALTER TABLE solar_post

ADD CONSTRAINT solar_post_ihgdbfk_1 FOREIGN KEY (title, author) REFERENCES solar_blog (title, author)

#NEW
ALTER TABLE solar_post
ADD CONSTRAINT solar_post_ihgdbfk_1 FOREIGN KEY (title, author) REFERENCES solar_blog (title, author) ON UPDATE CASCADE


Reply to this email directly or view it on GitHubhttps://github.com//issues/20
.

from django-compositekey.

menelike avatar menelike commented on June 27, 2024

Hi Simone,

the reason I deleted the issue is that it isn't actually an issue. Django primary keys should be immutable, even on normal foreign key relations there is no ON UPDATE CASCADE feature in django itself. This results in that primary compund keys should be immutable too. In my case the primary keys are mutable, the CASCADE ON UPDATE is a database driven solution, but it's always the best solution to stay with immutable primary key(s) anyway.

Keep up the good work!

Regards

from django-compositekey.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.