Changes between Version 26 and Version 34 of Ticket #18468


Ignore:
Timestamp:
Aug 6, 2021, 9:59:42 PM (3 years ago)
Author:
Jared Chung
Comment:

This patch is ready for review. It meets everything on the checklist. I'm updating the status so it shows up in Patches Needing Review on the Development Dashboard.

If you would like additional information about some of the design and implementation decisions behind this patch, please refer to the Github Pull Request conversation at https://github.com/django/django/pull/14463

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18468

    • Property Patch needs improvement unset
    • Property Needs documentation unset
    • Property Needs tests unset
    • Property Owner changed from KimSoungRyoul to Jared Chung
  • Ticket #18468 – Description

    v26 v34  
    1 Hello,
    2 
    3 That would be nice if it was possible to include comment on table / columns at creation time with the syncdb manage.py option.
     1Database-level comments are valuable for database administrators, data analysts, data scientists, and others who are looking to consume data that is managed by Django. Most Django-supported databases also support table-level and column-level comments. This ticket would add functionality to Django to allow Django users to specify comments for syncdb manage.py to enter into the database.
    42
    53....
     
    2119}}}
    2220
    23 
    24 
    25 
    26 
    27 
    28 
    29 
    30 
    31 
    32 
    33 
    34 
Back to Top