SchemaColumn.from constructor

SchemaColumn.from(
  1. SchemaColumn otherColumn
)

Creates a copy of otherColumn.

Implementation

SchemaColumn.from(SchemaColumn otherColumn) {
  name = otherColumn.name;
  _type = otherColumn._type;
  isIndexed = otherColumn.isIndexed;
  isNullable = otherColumn.isNullable;
  autoincrement = otherColumn.autoincrement;
  isUnique = otherColumn.isUnique;
  defaultValue = otherColumn.defaultValue;
  isPrimaryKey = otherColumn.isPrimaryKey;
  relatedTableName = otherColumn.relatedTableName;
  relatedColumnName = otherColumn.relatedColumnName;
  _deleteRule = otherColumn._deleteRule;
}