@@ -57,7 +57,7 @@ from django.db import models
5757
5858class Person (models .Model ):
5959 first_name = models.CharField(max_length = 30 )
60- last_name = models.CharField(max_length = 30 )
60+ last_name = models.CharField(max_length = 30 , help_text = " It's your last name " )
6161
6262 class Meta :
6363 db_table = ' person'
@@ -151,6 +151,10 @@ alter table example.tb_person
151151 check (last_name is not null );
152152/
153153
154+ comment on column example .tb_person .last_name
155+ is ' It' ' s your last name' ;
156+ /
157+
154158grant select , insert, update , delete
155159 on example .tb_person
156160 to rl_example;
@@ -182,7 +186,8 @@ when (new.id is null)
182186
183187# Release notes
184188
185- - ` v1.0.0 ` - 16/04/2018 - First release
186- - ` v1.0.1 ` - 16/04/2018 - Rename package and fix setup issues
187- - ` v1.0.2 ` - 17/04/2018 - Fix documentation preview
188- - ` v2.0.0 ` - 01/03/2021 - Recreate the entire schema editor backend with more flexible features
189+ - ` v1.0.0 ` - Apr 16, 2018 - First release
190+ - ` v1.0.1 ` - Apr 16, 2018 - Rename package and fix setup issues
191+ - ` v1.0.2 ` - Apr 17, 2018 - Fix documentation preview
192+ - ` v2.0.0 ` - Mar 1, 2021 - Recreate the entire schema editor backend with more flexible features
193+ - ` v2.0.1 ` - Mar 22, 2021 - Escape single quotes on column comments
0 commit comments