Skip to content

Instantly share code, notes, and snippets.

@andrewroth
Created November 8, 2010 15:57
Show Gist options
  • Save andrewroth/667842 to your computer and use it in GitHub Desktop.
Save andrewroth/667842 to your computer and use it in GitHub Desktop.
--
-- Table structure for table `authentications`
--
DROP TABLE IF EXISTS `authentications`;
CREATE TABLE `authentications` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`provider` varchar(255) DEFAULT NULL,
`uid` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `authentications`
--
/*!40000 ALTER TABLE `authentications` DISABLE KEYS */;
LOCK TABLES `authentications` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `authentications` ENABLE KEYS */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment