mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add column names
This commit is contained in:
parent
f14c0c0e22
commit
8f304e36be
1 changed files with 2 additions and 2 deletions
|
|
@ -213,9 +213,9 @@ export class Group extends BaseEntity {
|
|||
@Column('text', { nullable: true })
|
||||
topics?: string | null
|
||||
|
||||
@Column('boolean', { default: false })
|
||||
@Column('boolean', { default: false, name: 'only_admin_can_post' })
|
||||
onlyAdminCanPost!: boolean
|
||||
|
||||
@Column('boolean', { default: false })
|
||||
@Column('boolean', { default: false, name: 'only_admin_can_see_members' })
|
||||
onlyAdminCanSeeMembers!: boolean
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue