Variable KyselyMigrationConst

KyselyMigration: Table<
    { name: Text<1>; timestamp: Text<1> },
    {
        name: {
            required: true;
            type: {
                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: {
            required: true;
            type: {
                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<{ name: Text<1>; timestamp: Text<1> }>,
> = ...