Created
December 9, 2010 21:22
-
-
Save andrewroth/735362 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
DROP TABLE IF EXISTS `pr_question_sheet_pr_infos`; | |
CREATE TABLE `pr_question_sheet_pr_infos` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`question_sheet_id` int(11) DEFAULT NULL, | |
`created_at` datetime DEFAULT NULL, | |
`updated_at` datetime DEFAULT NULL, | |
`form_type` varchar(255) DEFAULT 'review', | |
`summary_form_id` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; | |
INSERT INTO `pr_question_sheet_pr_infos` VALUES (1,1,'2010-11-10 16:26:39','2010-12-03 07:47:36','review',11),(2,2,'2010-11-10 17:03:56','2010-12-03 20:54:29','review',11),(5,5,'2010-11-12 15:48:29','2010-12-02 18:23:38','personal',NULL),(7,7,'2010-11-12 16:10:54','2010-12-02 18:23:52','personal',NULL),(11,11,'2010-11-30 16:42:29','2010-12-03 07:44:01','summary',NULL),(13,13,'2010-12-06 03:03:07','2010-12-08 15:00:16','personal',NULL); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment