mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
support other SQLite wrappers, and various hooks needed by grist-static (#516)
This commit is contained in:
@@ -29,6 +29,7 @@ export class Organization extends Resource {
|
||||
public id: number;
|
||||
|
||||
@Column({
|
||||
type: String,
|
||||
nullable: true
|
||||
})
|
||||
public domain: string;
|
||||
@@ -46,7 +47,7 @@ export class Organization extends Resource {
|
||||
@OneToMany(type => AclRuleOrg, aclRule => aclRule.organization)
|
||||
public aclRules: AclRuleOrg[];
|
||||
|
||||
@Column({name: 'billing_account_id'})
|
||||
@Column({name: 'billing_account_id', type: Number})
|
||||
public billingAccountId: number;
|
||||
|
||||
@ManyToOne(type => BillingAccount)
|
||||
|
||||
Reference in New Issue
Block a user