FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
API-REST/API.REST.PHP/sql/setup.sql at main · Blue0label/API-REST · GitHub
Blue0label
/
API-REST
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
0
Code
Issues
0
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
API-REST
/
API.REST.PHP
/
sql
/
setup.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (11 loc) · 392 Bytes
Breadcrumbs
API-REST
/
API.REST.PHP
/
sql
/
setup.sql
Copy path
File metadata and controls
12 lines (11 loc) · 392 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
DROP
DATABASE
if exists code_pills;
CREATE
DATABASE
IF
NOT EXISTS code_pills DEFAULT CHARACTER
SET
utf8 DEFAULT COLLATE utf8_general_ci;
USE code_pills;
CREATE
TABLE
IF
NOT EXISTS listado_clientes(
id
INT
AUTO_INCREMENT,
email
VARCHAR
(
255
)
NOT NULL
,
name
VARCHAR
(
255
)
NOT NULL
,
city
VARCHAR
(
255
)
NOT NULL
,
telephone
VARCHAR
(
255
)
NOT NULL
,
PRIMARY KEY
(id)
) ENGINE
=
INNODB;
Back
|
FazBrowse Home
|
New Git URL