Changeset 91e50d387e12a64e064a839045ab8f220ad7165d
- Timestamp:
- 10/28/07 15:22:34
(1 year ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1193581354 +0100
- git-parent:
[3780978e9fbe423b890103c3f49a055c27dad898]
- git-author:
- Christopher Jung <bktheg@web.de> 1193581354 +0100
- Message:
user_moneytransfer.count : Wertebereich vergroessert
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8a27e17 |
r91e50d3 |
|
| 4 | 4 | `to` int(11) NOT NULL default '0', |
|---|
| 5 | 5 | `time` int(10) unsigned NOT NULL default '0', |
|---|
| 6 | | `count` int(10) unsigned NOT NULL default '0', |
|---|
| | 6 | `count` bigint(20) unsigned NOT NULL default '0', |
|---|
| 7 | 7 | `text` text NOT NULL, |
|---|
| 8 | 8 | `fake` tinyint(3) unsigned NOT NULL default '0', |
|---|
| r144f38e |
r91e50d3 |
|
| 420 | 420 | ALTER TABLE ships ADD CONSTRAINT ships_fk_battles FOREIGN KEY (battle) REFERENCES battles(id); |
|---|
| 421 | 421 | ]]></update> |
|---|
| | 422 | <update type="structure" datum="2007-10-28"><![CDATA[ |
|---|
| | 423 | ALTER TABLE user_moneytransfer CHANGE `count` `count` bigint(20) unsigned NOT NULL default '0'; |
|---|
| | 424 | ]]></update> |
|---|
| 422 | 425 | </updates> |
|---|