forked from srih4ri/BingoOnline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbingo.sql
More file actions
28 lines (20 loc) · 729 Bytes
/
bingo.sql
File metadata and controls
28 lines (20 loc) · 729 Bytes
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
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `bingo`
--
-- --------------------------------------------------------
--
-- Table structure for table `bingo_game`
--
CREATE TABLE IF NOT EXISTS `bingo_game` (
`id` int(11) NOT NULL auto_increment,
`game_id` varchar(30) NOT NULL,
`player_list` varchar(70) NOT NULL,
`checked_list` varchar(100) NOT NULL,
`winner` varchar(2) NOT NULL default '-1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;