Created
November 8, 2010 15:57
-
-
Save andrewroth/667842 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
-- | |
-- 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