Index constructor

Index(
  1. String name,
  2. Table tbl,
  3. List<DbColumn> cols, {
  4. bool unique = false,
})

Implementation

Index(String name, Table tbl, List<DbColumn> cols, {bool unique = false}) {
  this._name = name;
  this._tbl = tbl;
  this._cols = cols;
  this._unique = unique;
}