How to define an required column in a model. In Mysql I define a column with CREATE TABLE `test` ( `testcol` varchar(45) NOT NULL, Not sure how to define this in Orm2
How to define an required column in a model. In Mysql I define a column with
CREATE TABLE
test(testcolvarchar(45) NOT NULL,Not sure how to define this in Orm2