Skip to content

Instantly share code, notes, and snippets.

@ethnt
Created January 1, 2010 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethnt/267227 to your computer and use it in GitHub Desktop.
Save ethnt/267227 to your computer and use it in GitHub Desktop.
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 01, 2010 at 02:43 PM
-- Server version: 5.1.37
-- PHP Version: 5.2.10-2ubuntu6.3
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: `finito`
--
-- --------------------------------------------------------
--
-- Table structure for table `networks`
--
CREATE TABLE IF NOT EXISTS `networks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`username` varchar(100) NOT NULL,
`feedURI` mediumtext NOT NULL,
`profileURI` mediumtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `networks`
--
INSERT INTO `networks` (`id`, `name`, `username`, `feedURI`, `profileURI`) VALUES
(1, 'Twitter', 'iEthan', 'http://twitter.com/statuses/user_timeline/18450439.rss', 'http://twitter.com/iEthan'),
(2, 'GitHub', 'eturk', 'http://github.com/eturk.atom', 'http://github.com/eturk'),
(3, 'Blog', 'Ethan', 'http://ethan.luffle.com/blog/feed.xml', 'http://ethan.luffle.com/blog');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment