<div dir="ltr">Hi Mark,<br><br>We've just pushed change to the github repository: now characted set is not specified by default.<br><br>Now, if you specify an attribute in Pony:<br><br>� � name = Optional(unicode, 255)<br>

<br>It will be translated to the following column definition:<br><br>� � `name` VARCHAR(255) NOT NULL<br><br>If you want to have NULL as the default value for an Optional string attribute instead of an empty string, then you can specify the option 'nullable=True' in the attribute definition:<div>

<br>� ��name = Optional(unicode, 255, nullable=True)<br><br>In this case, the column definition will look as<br><br>� ��`name` VARCHAR(255)<br><br>Pony doesn't append 'DEFAULT NULL' because in MySQL it is not necessary, it is only NOT NULL that requires explicit declaration<br>

<br><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jan 7, 2014 at 6:44 PM, Mark Nesterovych <span dir="ltr"><<a href="mailto:m.nesterovych@gmail.com" target="_blank">m.nesterovych@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello.<div>I am trying to create a field in table which should look like this:</div><div>`name` varchar(255) DEFAULT NULL<br>

</div><div>But both types I've tried UNICODE and STR produces next statement:</div>
<div>`name` varchar(255) CHARACTER SET utf8 NOT NULL<br></div><div><br></div><div>How can I get rid of CHARACTER SET here ?</div><div><br></div><div>Thank You.</div></div>
<br>_______________________________________________<br>
ponyorm-list mailing list<br>
<a href="mailto:ponyorm-list@ponyorm.org">ponyorm-list@ponyorm.org</a><br>
<a href="/ponyorm-list" target="_blank">/ponyorm-list</a><br>
<br></blockquote></div><br></div>