From dae09902075a796227f9d8c1b36efb55d214b18b Mon Sep 17 00:00:00 2001 From: s460930 Date: Wed, 9 Dec 2020 19:36:14 +0100 Subject: [PATCH] SMART-42 added username field to UserProfile entity --- rest-app/db.sqlite3 | Bin 167936 -> 172032 bytes .../__pycache__/urls.cpython-38.pyc | Bin 1015 -> 1065 bytes .../__pycache__/models.cpython-38.pyc | Bin 1060 -> 1086 bytes .../migrations/0003_userprofile_username.py | 20 ++++++++++++++++++ 4 files changed, 20 insertions(+) create mode 100644 rest-app/smartpicasso/app/user_profile/migrations/0003_userprofile_username.py diff --git a/rest-app/db.sqlite3 b/rest-app/db.sqlite3 index 3841dcd432ea01b0a42fbe197540b9d975e33331..212aed72f7115830d37481d6ece05f9f1af015eb 100644 GIT binary patch delta 432 zcmZozz}0YoYl5_(F#`jG77%L!F*6VcPSi1GG~Sr7gr8ZQOL#K7fG!i4@W#fwoNg}S ztPHC5j-|z^Mezki`DvLssRjlH#_=ElC?CwuOUz9*GB7gGH8j#Suv9R#urfBaGBVdQ zwlK3aG2I*~wM>*ze3Jo-0ULt=0|S5V#>Qm+$+`K{A>4191smS*Z~j)#_kdA!I%@)> zDj%;D&qJOSJo$WHAULtHY5T4OMqMrzJ}<_Ojg2jgOy=&>3$htC1&op1re*F17M-4u z&B)8FX6_2&nQ^N&>AJ9stEw`#$WGsw%_z&LGW~ou<9%Hn1tpMfkmHpU$`Xr`GZKq5 zObs*@{QN@{{6c+v6hi$x14CUw;nW6l!-YIX!-@Pr9@rP*JO}wCd4Yb}$g}+*50f)9 z4_J5-{~iAAATP%9PtTQSnhp^?#lMz+0{`>Pf&~ry(6k=oyTp; zvmOK|HnwcvmB6UW#lo{5XhWkHlezQs!W>3T0i)95)S~!;qWrYXoK#J7C$Q*ro?J#= zO^qg2M|N>lRmNuDlEkE(RAiONZ1w3*xs3N&fu3Me+}J3~wEaRJqv1q;zM~8*JO>&0 z!+8$!N%8{SyOC%6K^`V&W*!!h2PW~~;olDOMlApITzRJHK+y>d{HOTW@=xG@zFDxK zfq(i0eWrr#f&onI3Y<*9kWmF<6%hXe|D*{l98COC3_#UU8yo%jjRTojeI+G*4J^`3 zQ_WH=4a|*AOcIk4lT6am3@nmUO)OJV4Gm0^0}@M$Dzjbka}rAur$6LnQZNo=1Zy-; zPD?bjNHj`GvowQfOg2hQOfyJIF-lHKF)%~X*vrSHz{3S}4HN%%2B0VI0G+#061}@u>b%7 diff --git a/rest-app/smartpicasso/__pycache__/urls.cpython-38.pyc b/rest-app/smartpicasso/__pycache__/urls.cpython-38.pyc index a7c2f9b2241829ed7dbf70406c61415ca40844da..e76a947179e147a2c61850b757b3ddb7016c40ce 100644 GIT binary patch delta 123 zcmey)zLG;bl$V!_0SJ7=F2SyI?j znX=fj*qfQsnWH#TID#28IX4#UVPaI8EXXX%5noW0pO%@EI$4eRumBIx02Y28Mge9X IMj-qP04`J(m;e9( delta 94 zcmZ3<@ts{el$V!_0SM~-&&8WCGcY^`agYHEkmCTv#SRm-jfB}!nX=fj*qfQsnW8vS f*n=4~IX2epVVWGnyq6DT4hugIqX07xBhNno-jTPr#ia zg)@b#g&~EjnJG$eGautsMo|%R! delta 113 zcmdnTv4n#+l$V!_0SM~-&&8)qDoYk`3VRBK$M4RN!kNO= z!jQt%%oHWCS%&c{qo^=YYcUIu;9z87E)oSY{4@n8voWVkE@8Ih=7CBGF$zuI#oPh_ Dv(Xma diff --git a/rest-app/smartpicasso/app/user_profile/migrations/0003_userprofile_username.py b/rest-app/smartpicasso/app/user_profile/migrations/0003_userprofile_username.py new file mode 100644 index 0000000..c0af2d1 --- /dev/null +++ b/rest-app/smartpicasso/app/user_profile/migrations/0003_userprofile_username.py @@ -0,0 +1,20 @@ +# Generated by Django 3.1.3 on 2020-12-09 18:34 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + atomic = False + + dependencies = [ + ('user_profile', '0002_remove_userprofile_phone_number'), + ] + + operations = [ + migrations.AddField( + model_name='userprofile', + name='username', + field=models.CharField(default='', max_length=50, unique=True), + preserve_default=False, + ), + ]