Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --
- -- Table structure for table `user`
- --
- DROP TABLE IF EXISTS `user`;
- /*!40101 SET @saved_cs_client = @@character_set_client */;
- /*!40101 SET character_set_client = utf8 */;
- CREATE TABLE `user` (
- `nama` varchar(30) NOT NULL,
- `username` varchar(30) NOT NULL,
- `password` varchar(30) NOT NULL,
- `status` varchar(50) NOT NULL,
- PRIMARY KEY (`nama`,`username`,`password`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- /*!40101 SET character_set_client = @saved_cs_client */;
Advertisement
Add Comment
Please, Sign In to add comment