Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/contants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@


export const CreateTable = "create table";

export const AlterTable = "alter table "

export const CONSTRAINT = "constraint"

export const Primary_Key = "primary key"

export const Foreign_Key = "foreign key"

export const CONSTRAINT_Primary_Key = "constraint primary key";

export const CONSTRAINT_Foreign_Key = "constraint foreign key";
Loading