Skip to content

Commit 1596c00

Browse files
committed
donation.sql
1 parent 48eb625 commit 1596c00

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

donation.sql

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
3+
CREATE TABLE `donation` (
4+
`id` int(255) NOT NULL,
5+
`amount` int(255) NOT NULL
6+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
7+
8+
--
9+
-- Dumping data for table `donation`
10+
--
11+
12+
INSERT INTO `donation` (`id`, `amount`) VALUES
13+
(1,500),(2,5000),(3,100),(4,170),(5,1200),(6,130);
14+
15+

0 commit comments

Comments
 (0)