FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
USSD-PHP-API/sessions.sql at master · GideonStruts/USSD-PHP-API · GitHub
GideonStruts
/
USSD-PHP-API
Public
forked from
dialogpsi/USSD-PHP-API
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
USSD-PHP-API
/
sessions.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (25 loc) · 1.25 KB
Breadcrumbs
USSD-PHP-API
/
sessions.sql
Copy path
File metadata and controls
28 lines (25 loc) · 1.25 KB
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
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--
--------------------------------------------------------
--
Host: 127.0.0.1
--
Server version: 5.5.25a - MySQL Community Server (GPL)
--
Server OS: Win32
--
HeidiSQL Version: 7.0.0.4389
--
--------------------------------------------------------
/*
!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT
*/
;
/*
!40101 SET NAMES utf8
*/
;
/*
!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0
*/
;
/*
!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
*/
;
--
Dumping structure for table celebrity.sessions
DROP
TABLE
IF EXISTS
`
sessions
`
;
CREATE
TABLE
IF
NOT EXISTS
`
sessions
`
(
`
sessionsid
`
varchar
(
100
)
NOT NULL
,
`
tel
`
varchar
(
50
) DEFAULT
NULL
,
`
menu
`
varchar
(
50
) DEFAULT
NULL
,
`
pg
`
varchar
(
50
) DEFAULT
NULL
,
`
created_at
`
timestamp
NULL
DEFAULT
CURRENT_TIMESTAMP
,
`
others
`
varchar
(
50
) DEFAULT
NULL
,
PRIMARY KEY
(
`
sessionsid
`
)
) ENGINE
=
InnoDB DEFAULT CHARSET
=
latin1 COMMENT
=
'
Handle the sessions
'
;
--
Data exporting was unselected.
/*
!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '')
*/
;
/*
!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS)
*/
;
/*
!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT
*/
;
Back
|
FazBrowse Home
|
New Git URL