Skip to content

Add task model

Serhii Horodilov edited this page Feb 20, 2024 · 6 revisions

At the end of this guide you will:

  • create a Django model to represent tasks
  • create and apply migrations to the project database
Make sure you have successful configured PostgreSQL database before you begin.

Table of Contents

Getting started

git checkout bp-models-tasks

Task model UML diagram

erDiagram
    task {
        UUID uuid "primary key"
        string summary
        string description
        bool completed
        datetime created_at
        datetime updated_at
        bigint reporter "foreign key"
        bigint assignee "foreign key"
    }
Loading

Changes

  1. Full change log