Skip to content

Commit

Permalink
Fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SferaDev authored and Xata committed Jul 5, 2024
1 parent 26bdce0 commit f8424de
Showing 1 changed file with 0 additions and 98 deletions.
98 changes: 0 additions & 98 deletions cli/src/commands/schema/edit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,104 +31,6 @@ import {
} from '../../migrations/pgroll.js';
import EditSchemaOld from './edit-old.js';

export type BranchSchemaFormatted =
| {
schema: {
tables: {
name: string;
uniqueConstraints: Schemas.BranchSchema['tables'][number]['uniqueConstraints'];
checkConstraints: Schemas.BranchSchema['tables'][number]['checkConstraints'];
foreignKeys: Schemas.BranchSchema['tables'][number]['foreignKeys'];
columns: {
name: string;
type: string;
unique: boolean;
notNull: boolean;
defaultValue: any;
comment: string;
}[];
}[];
};
}
| undefined;

export type ColumnData = {
name: string;
type: string;
unique: boolean;
nullable: boolean;
defaultValue?: string;
vector?: {
dimension: number;
};
originalName: string;
tableName: string;
link?: {
table: string;
};
file?: {
defaultPublicAccess: boolean;
};
'file[]'?: {
defaultPublicAccess: boolean;
};
};

export type AddTablePayload = {
type: 'add-table';
table: {
name: string;
};
};

export type EditTablePayload = {
type: 'edit-table';
table: {
name: string;
newName: string;
};
};

export type DeleteTablePayload = {
name: string;
};

export type AddColumnPayload = {
type: 'add-column';
tableName: string;
column: ColumnData;
};

export type EditColumnPayload = {
type: 'edit-column';
column: ColumnData;
};

export type DeleteColumnPayload = { [tableName: string]: string[] };

export type FormatPayload = {
type: 'space' | 'migrate' | 'schema';
};

export type SelectChoice = {
name: FormatPayload | AddTablePayload | EditTablePayload | AddColumnPayload | EditColumnPayload;
message: string;
role?: string;
choices?: SelectChoice[];
disabled?: boolean;
hint?: string;
};

export type ValidationState = {
values: { name: string };
items: { name: string; input: string }[];
fields: { name: string; initial: string }[];
};

export type ColumnAdditions = { [tableName: string]: { [columnName: string]: AddColumnPayload['column'] } };

export type ColumnEdits = { [tableName: string]: { [columnName: string]: AddColumnPayload['column'] } };

const { Select, Snippet, Confirm } = enquirer as any;

const xataTypes = [
Expand Down

0 comments on commit f8424de

Please sign in to comment.