We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GET] /v1/table
(RE)
[GET] /v1/table/single/:name
[Delete] /v1/table/:name
[POST] /v1/table
{ "tableName" : "test1", "column" : [ { "columnName" : "example", "dataType" : "INT", "constraint" : "NOT NULL", "PK" : "false", "FK" : "test" }, { "columnName" : "example2", "dataType" : "VARCHAR(25)", "constraint" : "false", "PK" : "false", "FK" : "false" } ] }
[GET] /database
[POST] /database/:name
[DELETE] /database/:name
The text was updated successfully, but these errors were encountered:
테이블 삭제, 생성 -> 삭제하거나, 생성한 테이블 이름을 데이터로 보내줄 것! 데이터베이스 삭제, 생성 -> 원격 디비로 테스트 못함
미완성
Sorry, something went wrong.
data.name에 들어가도록 했습니다 ~
확인했습니다~ @DongWooE
DongWooE
No branches or pull requests
table의 목록을 불러오기 (show tables)
[GET] /v1/table
(RE)
![table](https://user-images.githubusercontent.com/63181439/145844262-d5e776a9-50c1-464c-aba4-4e3adaae5017.PNG)
table 하나의 attribute 불러오기 (desc tablename)
[GET] /v1/table/single/:name
(RE)
![table single](https://user-images.githubusercontent.com/63181439/145844431-bba77cb8-306a-43d2-b31e-f413abf82b87.PNG)
table 하나를 삭제하기
[Delete] /v1/table/:name
(RE)
![table drop](https://user-images.githubusercontent.com/63181439/145844479-412100f3-1dcc-4a1c-8da6-a4bc3c2a9077.PNG)
table 하나 생성하기
[POST] /v1/table
{
"tableName" : "test1",
"column" : [
{
"columnName" : "example",
"dataType" : "INT",
"constraint" : "NOT NULL",
"PK" : "false",
"FK" : "test"
},
{
"columnName" : "example2",
"dataType" : "VARCHAR(25)",
"constraint" : "false",
"PK" : "false",
"FK" : "false"
}
]
}
(RE)
![table create](https://user-images.githubusercontent.com/63181439/145844518-9bab356f-090b-4c8f-9e7c-8f93f260c4cf.PNG)
database 목록 가져오기
[GET] /database
(RE)
![database show](https://user-images.githubusercontent.com/63181439/145844582-1af86a2b-e16e-48c8-81b8-51d5fe82752b.PNG)
database 하나 생성하기
[POST] /database/:name
(RE)
![database create](https://user-images.githubusercontent.com/63181439/145844638-22bdea73-08ae-46e8-9f30-5d5d7a17309e.PNG)
database 삭제하기
[DELETE] /database/:name
(RE)
![database dropPNG](https://user-images.githubusercontent.com/63181439/145844689-4ec49155-7b95-4f02-9f5f-d43c2433562d.PNG)
The text was updated successfully, but these errors were encountered: