Path: blob/master/src/packages/util/db-schema/account-creation-actions.ts
1447 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Table } from "./types";67Table({8name: "account_creation_actions",9fields: {10id: {11type: "uuid",12desc: "id",13},14action: {15type: "map",16desc:17"Describes the action to carry out when an account is created with the given email_address.",18},19email_address: {20type: "string",21desc: "Email address of user.",22},23expire: {24type: "timestamp",25desc: "When this action should be expired.",26},27},28rules: {29desc:30"Actions to carry out when accounts are created, triggered by the email address of the user.",31primary_key: "id",32pg_indexes: ["email_address"],33},34});353637