mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 21:19:07 +01:00
21 lines
409 B
TypeScript
21 lines
409 B
TypeScript
import { PrimaryColumn, Entity, Index, Column } from "typeorm";
|
|
import { id } from "../id.js";
|
|
|
|
@Entity()
|
|
export class Relay {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Index({ unique: true })
|
|
@Column("varchar", {
|
|
length: 512,
|
|
nullable: false,
|
|
})
|
|
public inbox: string;
|
|
|
|
@Column("enum", {
|
|
enum: ["requesting", "accepted", "rejected"],
|
|
})
|
|
public status: "requesting" | "accepted" | "rejected";
|
|
}
|