Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
TimeOutAdmin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TimeOut
TimeOutAdmin
Commits
e2d60ff3
Commit
e2d60ff3
authored
Jun 19, 2019
by
Tobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dc
parent
a82a61dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
timeout_run_sql.sql
sql/timeout_run_sql.sql
+16
-2
No files found.
sql/timeout_run_sql.sql
View file @
e2d60ff3
ALTER
TABLE
`checker`
ADD
`test_field`
INT
NOT
NULL
AFTER
`status`
;
CREATE
TABLE
`booking`
(
\ No newline at end of file
`id`
int
(
11
)
NOT
NULL
,
`event_id`
int
(
11
)
NOT
NULL
,
`customer_id`
int
(
11
)
NOT
NULL
COMMENT
'Guest - 0'
,
`bookId`
varchar
(
45
)
DEFAULT
NULL
,
`event_date_id`
int
(
11
)
NOT
NULL
,
`qrcode`
varchar
(
100
)
DEFAULT
NULL
,
`no_of_ticket`
int
(
11
)
DEFAULT
NULL
,
`ticket_details`
varchar
(
255
)
NOT
NULL
,
`amount`
double
DEFAULT
NULL
,
`reserved_by`
int
(
11
)
DEFAULT
'3'
COMMENT
'1 - SuperAdmin
\n
2 - Provider
\n
3 - Customer'
,
`booking_date`
varchar
(
50
)
DEFAULT
NULL
,
`payment_status`
tinyint
(
3
)
NOT
NULL
COMMENT
'0=>Pending, 1=>Complete, 2 => No Payment'
,
`status`
int
(
11
)
DEFAULT
'1'
COMMENT
'0 - Cancelled, 1 - Booked, 2 - Completed, 3 - Pending, 4 - Deleted'
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment