提交 1b45ad64 编写于 作者: S ShadelessFox

#9664 Allow to change collation name of the column


Former-commit-id: 73568d27
上级 6e87c059
......@@ -241,11 +241,15 @@ public class SQLServerTableColumn extends JDBCTableColumn<SQLServerTableBase> im
return dataType == null ? DBPDataKind.UNKNOWN : dataType.getDataKind();
}
@Property(viewable = false, order = 75)
@Property(viewable = true, editable = true, updatable = true, order = 75)
public String getCollationName() {
return collationName;
}
public void setCollationName(String collationName) {
this.collationName = collationName;
}
@Property(viewable = false, order = 80)
@Override
public boolean isHidden() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册