Source
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; }