-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a5c67c
commit 51fb06d
Showing
1 changed file
with
61 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
-- phpMyAdmin SQL Dump | ||
-- version 3.2.4 | ||
-- http://www.phpmyadmin.net | ||
-- | ||
-- Host: localhost | ||
-- Generation Time: Nov 19, 2010 at 07:13 PM | ||
-- Server version: 5.1.41 | ||
-- PHP Version: 5.3.1 | ||
|
||
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; | ||
|
||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
|
||
-- | ||
-- Database: `hackfest_putatan` | ||
-- | ||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `answers` | ||
-- | ||
|
||
CREATE TABLE IF NOT EXISTS `answers` ( | ||
`id` int(11) NOT NULL, | ||
`question_id` int(11) DEFAULT NULL, | ||
`body` text, | ||
`created` datetime DEFAULT NULL, | ||
`modified` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | ||
|
||
-- | ||
-- Dumping data for table `answers` | ||
-- | ||
|
||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `questions` | ||
-- | ||
|
||
CREATE TABLE IF NOT EXISTS `questions` ( | ||
`id` int(11) NOT NULL, | ||
`title` varchar(255) DEFAULT NULL, | ||
`body` text, | ||
`status` int(1) DEFAULT NULL, | ||
`created` datetime DEFAULT NULL, | ||
`modified` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | ||
|
||
-- | ||
-- Dumping data for table `questions` | ||
-- | ||
|