diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-11-15 12:04:54 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-11-15 12:04:54 +0900 |
| commit | d53c55ecb512be114b394955da22e2450d01e379 (patch) | |
| tree | 10fd5da883c1617233670a771c453d9561dd2401 /src/models/entities/clip.ts | |
| parent | Add description (diff) | |
| download | misskey-d53c55ecb512be114b394955da22e2450d01e379.tar.gz misskey-d53c55ecb512be114b394955da22e2450d01e379.tar.bz2 misskey-d53c55ecb512be114b394955da22e2450d01e379.zip | |
wip: clip
Diffstat (limited to 'src/models/entities/clip.ts')
| -rw-r--r-- | src/models/entities/clip.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/models/entities/clip.ts b/src/models/entities/clip.ts index 37d21f73b1..66b5b8847e 100644 --- a/src/models/entities/clip.ts +++ b/src/models/entities/clip.ts @@ -35,4 +35,10 @@ export class Clip { default: false }) public isPublic: boolean; + + @Column('varchar', { + length: 2048, nullable: true, default: null, + comment: 'The description of the Clip.' + }) + public description: string | null; } |