Re: Can you remove a model's last field of SQLite3 in Django 1.8?

2015-11-29 Thread Markus Holtermann
#x27; statement without any columns: https://www.sqlite.org/lang_createtable.html /Markus On Sun, Nov 29, 2015 at 09:17:53AM -0800, KwangYoun Jung wrote: Can you remove a model's last field of SQLite3 in Django 1.8? I have a model that has only one column in SQLite3. When I remove a last

Re: Can you remove a model's last field of SQLite3 in Django 1.8?

2015-11-29 Thread Daniel Roseman
On Sunday, 29 November 2015 17:17:54 UTC, KwangYoun Jung wrote: > > Can you remove a model's last field of SQLite3 in Django 1.8? > > I have a model that has only one column in SQLite3. > When I remove a last field of the model, I get an error like below > > > > *

Can you remove a model's last field of SQLite3 in Django 1.8?

2015-11-29 Thread KwangYoun Jung
Can you remove a model's last field of SQLite3 in Django 1.8? I have a model that has only one column in SQLite3. When I remove a last field of the model, I get an error like below *django.db.utils.OperationalError: near ")": syntax error*Anyone knows about this issue ? -- Yo