> hello all,
> 
> I am newbie in sqlalchemy.I am thrilled by the sqlachemy features. But i got 
> struck in the how to write the not null  for the following:
> 
> create table organisation(orgcode varchar(30) not null,orgname text not 
> null,primary key(orgcode));
> 
> I have written the using declarative base as follows but dont know how to 
> impose not null constraint

You want to use the nullable=False argument.

http://www.sqlalchemy.org/docs/reference/sqlalchemy/schema.html?highlight=nullable

Thanks,

Michael

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to