Advertisement
Guest User

Untitled

a guest
May 7th, 2023
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.00 KB | Source Code | 0 0
  1. CREATE DATABASE  IF NOT EXISTS `tweetsopenai` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
  2. USE `tweetsopenai`;
  3. -- MySQL dump 10.13  Distrib 8.0.33, for Win64 (x86_64)
  4. --
  5. -- Host: 127.0.0.1    Database: tweetsopenai
  6. -- ------------------------------------------------------
  7. -- Server version   8.0.33
  8.  
  9. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  10. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  11. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  12. /*!50503 SET NAMES utf8 */;
  13. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  14. /*!40103 SET TIME_ZONE='+00:00' */;
  15. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  16. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  17. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  18. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  19.  
  20. --
  21. -- Table structure for table `tweets`
  22. --
  23.  
  24. DROP TABLE IF EXISTS `tweets`;
  25. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  26. /*!50503 SET character_set_client = utf8mb4 */;
  27. CREATE TABLE `tweets` (
  28.   `tweet_id` bigint unsigned NOT NULL,
  29.   `tweet_created_at` datetime NOT NULL,
  30.   `tweet_text` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL,
  31.   `tweet_sentiment` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  32.   PRIMARY KEY (`tweet_id`),
  33.   UNIQUE KEY `tweet.id_UNIQUE` (`tweet_id`)
  34. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  35. /*!40101 SET character_set_client = @saved_cs_client */;
  36. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  37.  
  38. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  39. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  40. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  41. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  42. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  43. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  44. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  45.  
Tags: mysql Database db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement