Browse Source

fix(nocodb): remove fk_custom_url_id from base model

Ramesh Mane 4 days ago
parent
commit
4709a50ac9
  1. 1
      packages/nocodb/src/models/Base.ts

1
packages/nocodb/src/models/Base.ts

@ -38,7 +38,6 @@ export default class Base implements BaseType {
uuid?: string; uuid?: string;
password?: string; password?: string;
roles?: string; roles?: string;
fk_custom_url_id?: string;
constructor(base: Partial<Base>) { constructor(base: Partial<Base>) {
Object.assign(this, base); Object.assign(this, base);

Loading…
Cancel
Save