-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignoring table partitions definitions.
- Loading branch information
Carlos Cima
committed
Apr 13, 2016
1 parent
91269d5
commit 10428b8
Showing
4 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `export` ( | ||
`id_export` int(10) unsigned NOT NULL AUTO_INCREMENT, | ||
`export_type` varchar(50) NOT NULL, | ||
`filename` varchar(255) NOT NULL DEFAULT '', | ||
`file_content` longblob NOT NULL, | ||
`generated_at` datetime NOT NULL, | ||
`downloaded_at` datetime DEFAULT NULL, | ||
`generated_by` varchar(50) NOT NULL DEFAULT '', | ||
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, | ||
PRIMARY KEY (`id_export`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 | ||
/*!50100 PARTITION BY RANGE (id_export) | ||
(PARTITION p0 VALUES LESS THAN (1000) ENGINE = InnoDB, | ||
PARTITION p1 VALUES LESS THAN (2000) ENGINE = InnoDB, | ||
PARTITION p2 VALUES LESS THAN (3000) ENGINE = InnoDB, | ||
PARTITION p3 VALUES LESS THAN (4000) ENGINE = InnoDB, | ||
PARTITION p4 VALUES LESS THAN MAXVALUE ENGINE = InnoDB) */; | ||
/*!40101 SET character_set_client = @saved_cs_client */; |