Advertisement
LysenkoAdv

tickets

Jan 22nd, 2019
745
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. --
  2. -- Structură tabel pentru tabel `rpg_tickets`
  3. --
  4.  
  5. CREATE TABLE `rpg_tickets` (
  6. `id` int(11) NOT NULL,
  7. `Author` text NOT NULL,
  8. `Player` text NOT NULL,
  9. `Details` text NOT NULL,
  10. `Date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  11. `Status` int(11) NOT NULL,
  12. `IP` varchar(32) NOT NULL
  13. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement