root/donation/install.sql @ 61

Revision 61, 361 bytes (checked in by d0nut, 6 years ago)

donation made some organizational steps forward. The optional packages now have dummy files for cronjobs, eventlisteners and icons. the concept will work ;)

Line 
1-- WCF
2CREATE TABLE wcf1_donation (
3  donationID int(10) unsigned NOT NULL,
4  system varchar(255) NOT NULL DEFAULT '', --paypal/google
5  timestamp int(12) NOT NULL,
6  userID int(10) unsigned NOT NULL,
7  username varchar(255) NOT NULL DEFAULT '',
8  amount float NOT NULL,
9  message text NOT NULL,
10  PRIMARY KEY (donationID)
11) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Note: See TracBrowser for help on using the browser.