Exemplo n.º 1
0
        public void TestTinyInt()
        {
            IColumn column = new TinyIntColumn("line_no");

            column.NotNull();
            column.AutoIncrement();
            Assert.Equal("`line_no` TINYINT NOT NULL AUTO_INCREMENT", generator.ToSQL(column));
        }