Skip to content

Commit dc35e90

Browse files
m-banikcdynak
authored andcommitted
database exported
1 parent d98dcdf commit dc35e90

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

maps.sql

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
DROP TABLE IF EXISTS `points`;
2+
CREATE TABLE `points` (
3+
`id` int(11) NOT NULL,
4+
`name` varchar(16) NOT NULL,
5+
`lat` float NOT NULL,
6+
`lng` float NOT NULL,
7+
`info` varchar(256) NOT NULL,
8+
PRIMARY KEY (`id`)
9+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
10+
11+
LOCK TABLES `points` WRITE;
12+
INSERT INTO `points` VALUES (1,'WroTest',51,17,'test test test');
13+
UNLOCK TABLES;

0 commit comments

Comments
 (0)