Changeset 445 for beta/sql/structure.sql
- Timestamp:
- Feb 22, 2009, 5:46:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
beta/sql/structure.sql
r406 r445 1 -- phpMyAdmin SQL Dump 2 -- version 3.1.2 3 -- http://www.phpmyadmin.net 4 -- 5 -- Počítač: localhost 6 -- Vygenerováno: Neděle 22. února 2009, 17:17 7 -- Verze MySQL: 5.0.51 8 -- Verze PHP: 5.2.6 9 10 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; 11 12 -- 13 -- Databáze: `wow_web` 14 -- 15 16 -- -------------------------------------------------------- 1 17 2 18 -- … … 12 28 `date` timestamp NOT NULL default '0000-00-00 00:00:00' on update CURRENT_TIMESTAMP, 13 29 PRIMARY KEY (`id`) 14 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci AUTO_INCREMENT= 9;30 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci AUTO_INCREMENT=12 ; 15 31 16 32 -- -------------------------------------------------------- … … 72 88 73 89 -- 90 -- Struktura tabulky `finance` 91 -- 92 93 CREATE TABLE IF NOT EXISTS `finance` ( 94 `id` int(11) NOT NULL auto_increment, 95 `time` datetime default NULL, 96 `money` int(11) default NULL, 97 `operation` enum('contribution','consumption','buy','internet','sell') collate latin2_czech_cs NOT NULL default 'contribution', 98 `description` varchar(255) collate latin2_czech_cs default NULL, 99 KEY `ID` (`id`) 100 ) ENGINE=MyISAM DEFAULT CHARSET=latin2 COLLATE=latin2_czech_cs AUTO_INCREMENT=113 ; 101 102 -- -------------------------------------------------------- 103 104 -- 74 105 -- Struktura tabulky `guildy` 75 106 --
Note:
See TracChangeset
for help on using the changeset viewer.