DotNetWorkQueue.Transport.PostgreSQL.Schema.Table.Table C# (CSharp) Method

Table() public method

Initializes a new instance of the Table class.
public Table ( string name ) : System.Collections.Generic
name string The name.
return System.Collections.Generic
		public Table(string name) 
        {
			Name = name;
            Columns = new Columns();
            Constraints = new List<Constraint>();
		}
        #endregion