Skip to content

Commit 66980e3

Browse files
authored
Merge pull request #3 from lastlink/f/lastlink
F/lastlink massive improvements to parser
2 parents 4f6eac7 + 60ea34d commit 66980e3

3 files changed

Lines changed: 221 additions & 76 deletions

File tree

src/contants.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
3+
export const CreateTable = "create table";
4+
5+
export const AlterTable = "alter table "
6+
7+
export const CONSTRAINT = "constraint"
8+
9+
export const Primary_Key = "primary key"
10+
11+
export const Foreign_Key = "foreign key"
12+
13+
export const CONSTRAINT_Primary_Key = "constraint primary key";
14+
15+
export const CONSTRAINT_Foreign_Key = "constraint foreign key";

0 commit comments

Comments
 (0)