forked from oidoia/Altis-Life-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wanted.sql
33 lines (27 loc) · 810 Bytes
/
wanted.sql
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
29
30
31
32
33
/*
Navicat MySQL Data Transfer
Source Server : Altis Life DB
Source Server Version : 50619
Source Host : localhost:3306
Source Database : arma3life
Target Server Type : MYSQL
Target Server Version : 50619
File Encoding : 65001
Date: 2014-09-17 18:06:36
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `wanted`
-- ----------------------------
DROP TABLE IF EXISTS `wanted`;
CREATE TABLE `wanted` (
`wantedID` varchar(50) NOT NULL,
`wantedName` varchar(52) NOT NULL,
`wantedCrimes` text NOT NULL,
`wantedBounty` int(100) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`wantedID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of wanted
-- ----------------------------