Skip to content

Commit f4412f9

Browse files
authored
Create tutablaaauditar.sql
1 parent 2a4e934 commit f4412f9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tutablaaauditar.sql

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
Source Schema : tudbaauditar
3+
*/
4+
5+
SET NAMES utf8mb4;
6+
SET FOREIGN_KEY_CHECKS = 0;
7+
8+
-- ----------------------------
9+
-- Table structure for logs
10+
-- ----------------------------
11+
DROP TABLE IF EXISTS `tutablaaauditar`;
12+
CREATE TABLE `tutablaaauditar` (
13+
`id` int(11) NOT NULL AUTO_INCREMENT,
14+
`campo1` varchar(255) DEFAULT NULL,
15+
`campo2` varchar(255) DEFAULT NULL,
16+
`campo3` text,
17+
PRIMARY KEY (`id`)
18+
) ENGINE=InnoDB AUTO_INCREMENT=1379 DEFAULT CHARSET=utf8;
19+
20+
SET FOREIGN_KEY_CHECKS = 1;

0 commit comments

Comments
 (0)