Giter VIP home page Giter VIP logo

Comments (1)

jodal avatar jodal commented on June 12, 2024

All Django database migrations shipped with Comics must work both for existing installations that are upgraded and fresh installations without any existing data. Since new installations of Comics 3.0 will never have any trace of django-invitation in their database, we cannot ship a data migration that depends on those database tables being present.

Instead, the following manual data migration will be added to the 3.0 release notes:


Since we've changed invitation system from django-invitation (singular) to django-invitations (plural), a new database table are used to keep track of the invitations. If you want to keep historical data of old invitations, you can migrate the old data into the new table by running the following SQL query:

INSERT INTO invitations_invitation (id, email, accepted, created, key, sent, inviter_id)
SELECT
    invite.id,
    registrant.email,
    'true',
    invite.date_invited,
    COALESCE(NULLIF(invite.key, ''), 'unknown-invite-key-' || invite.id),
    invite.date_invited,
    invite.from_user_id
FROM
    invitation_invitationkey AS invite
    JOIN auth_user AS registrant ON (invite.registrant_id = registrant.id);

SELECT setval('invitations_invitation_id_seq', (SELECT max(id) FROM invitations_invitation))

After the upgrade is done, and you've migrated any invitation data you want to keep, you can optionally delete the old tables as they are no longer in use:

DROP TABLE invitation_invitationkey;
DROP TABLE invitation_invitationuser;

from comics.

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.