Baza de Date

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

--

-- Structură tabel pentru tabel `vrp_turfs`


--

CREATE TABLE `vrp_turfs` (


`id` int(255) NOT NULL,
`x` float NOT NULL,
`y` float NOT NULL,
`z` float NOT NULL,
`blipColor` int(11) NOT NULL DEFAULT 0,
`blipRadius` float NOT NULL DEFAULT 110,
`faction` varchar(50) NOT NULL,
`isAttacked` varchar(50) NOT NULL DEFAULT 'Nu',
`attackedBy` varchar(50) NOT NULL DEFAULT 'none',
`payday` int(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Eliminarea datelor din tabel `vrp_turfs`
--

INSERT INTO `vrp_turfs` (`id`, `x`, `y`, `z`, `blipColor`, `blipRadius`, `faction`,
`isAttacked`, `attackedBy`, `payday`) VALUES
(1, -1089.37, 824.989, 168.638, 3, 110, 'Mafia Italiana', 'Nu', 'none', 0),
(2, 223.108, 680.841, 189.379, 27, 110, 'Mafia Ballas', 'Nu', 'none', 0),
(3, -1557.18, -33.8587, 57.0197, 15, 110, 'Los Aztecas', 'Nu', 'none', 0);

-- --------------------------------------------------------

You might also like