Skip to content
5 changes: 4 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const Configuration = {
extends: ["@commitlint/config-angular"],
rules: {
"scope-empty": [2, "never"],
Expand All @@ -12,5 +12,8 @@ export default {
"subject-full-stop": [0],
"type-case": [0],
"type-empty": [0],
"type-enum": [2, "always", ["feat", "fix", "perf"]],
},
}

export default Configuration
4 changes: 2 additions & 2 deletions src/opengeodeweb_microservice/database/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Data(Base):
geode_object: Mapped[str] = mapped_column(String, nullable=False)
viewer_object: Mapped[str] = mapped_column(String, nullable=False)

native_file_name: Mapped[str | None] = mapped_column(String, nullable=True)
viewable_file_name: Mapped[str | None] = mapped_column(String, nullable=True)
native_filename: Mapped[str | None] = mapped_column(String, nullable=True)
viewable_filename: Mapped[str | None] = mapped_column(String, nullable=True)

light_viewable: Mapped[str | None] = mapped_column(String, nullable=True)
input_file: Mapped[str | None] = mapped_column(String, nullable=True)
Expand Down