Variable KyselyMigrationConst

KyselyMigration: Table<
    TableSchemaToRowLike<
        {
            name: {
                prototype: Text<any>;
                serializeParamTypes: undefined | readonly string[];
                new(v: string): Text<1>;
                new(v: null): Text<0>;
                new(v: Expression): Text<0 | 1>;
                parse(v: string): string;
                subtype(): undefined | UseSubtype;
                typeString(): undefined | string;
                new (v: unknown): Text<1>;
            };
            timestamp: {
                prototype: Text<any>;
                serializeParamTypes: undefined | readonly string[];
                new(v: string): Text<1>;
                new(v: null): Text<0>;
                new(v: Expression): Text<0 | 1>;
                parse(v: string): string;
                subtype(): undefined | UseSubtype;
                typeString(): undefined | string;
                new (v: unknown): Text<1>;
            };
        },
    >,
    RowImpl<
        TableSchemaToRowLike<
            {
                name: {
                    prototype: Text<any>;
                    serializeParamTypes: undefined | readonly string[];
                    new(v: string): Text<1>;
                    new(v: null): Text<0>;
                    new(v: Expression): Text<0 | 1>;
                    parse(v: string): string;
                    subtype(): undefined | UseSubtype;
                    typeString(): undefined | string;
                    new (v: unknown): Text<1>;
                };
                timestamp: {
                    prototype: Text<any>;
                    serializeParamTypes: undefined | readonly string[];
                    new(v: string): Text<1>;
                    new(v: null): Text<0>;
                    new(v: Expression): Text<0 | 1>;
                    parse(v: string): string;
                    subtype(): undefined | UseSubtype;
                    typeString(): undefined | string;
                    new (v: unknown): Text<1>;
                };
            },
        >,
    >,
> = ...