Replies: 1 comment 17 replies
|
When you change a column to have One important thing to be aware of is columns like So if you want value of class MyTable(Table):
my_column = Varchar(null=True, default=None)Does that help? |
17 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi !
I have a table.
So, I want my columns to be optional, when creating new fields in my table. For example, I want to create empty fields.
BTW, when I used 0.84.0 version, and didn't use new Email column type, I could create empty fields in my table, without additional parameters (as null = True and etc.), but now I'm trying to make columns optional by using
null = True, but it doesn't work. Is there any way to make columns optional?All reactions