You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
import { BaseEntity } from "@medusajs/medusa";
|
|
import { Column, Entity } from "typeorm";
|
|
|
|
@Entity()
|
|
export class OnboardingState extends BaseEntity {
|
|
@Column({ nullable: true })
|
|
current_step: string;
|
|
|
|
@Column()
|
|
is_complete: boolean;
|
|
|
|
@Column({ nullable: true })
|
|
product_id: string;
|
|
}
|