<div dir="ltr">Hi Chris,<div><br></div><div>I just tried the following example:</div><div><br></div><div><br></div><div><div>from pony.orm import *</div><div><br></div><div>db = Database()</div><div><br></div><div>class Entity1(db.Entity):</div><div>    attr1 = Required(LongStr)</div><div><br></div><div>db.bind('sqlite', ':memory:')</div><div>db.generate_mapping(create_tables=True)</div><div><br></div><div>show(Entity1)</div></div><div><br></div><div><br></div><div>And below is the output which I get:</div><div><br></div><div><br></div><div><div>class Entity1(Entity):</div><div>    id = PrimaryKey(int, auto=True)</div><div>    attr1 = Required(LongStr)</div></div><div><br></div><div>attr1 has type LongStr and it is displayed when I call show() for the Entity1. Could you provide your code snippet where it doesn't?</div><div><br></div><div><br></div><div>Regards,</div><div>Alexey</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Dec 9, 2014 at 5:44 PM, Chris Wood <span dir="ltr"><<a href="mailto:c.c.wood@gmail.com" target="_blank">c.c.wood@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello all,<br>
<br>
I've discovered that if I set an attribute to have a type of LongStr,<br>
then calling show() on an entity of that class won't show that<br>
attribute - I couldn't find this documented anywhere; is it a known<br>
feature?<br>
<br>
Cheers,<br>
Chris<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>
</blockquote></div><br></div>