See social network users cryptocurrency addresses and balances. Powered by transparent blockchains.
https://iseeyour.cash/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.8 KiB
103 lines
3.8 KiB
-- MariaDB dump 10.19 Distrib 10.6.4-MariaDB, for Linux (x86_64) |
|
-- |
|
-- Host: localhost Database: iseeyourcash |
|
-- ------------------------------------------------------ |
|
-- Server version 10.6.4-MariaDB |
|
|
|
/*!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 utf8mb4 */; |
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; |
|
/*!40103 SET TIME_ZONE='+00:00' */; |
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; |
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; |
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; |
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; |
|
|
|
-- |
|
-- Table structure for table `address` |
|
-- |
|
|
|
GRANT ALL PRIVILEGES ON *.* TO 'pluja'@'localhost'; |
|
|
|
USE iseeyourcash; |
|
|
|
DROP TABLE IF EXISTS `address`; |
|
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
/*!40101 SET character_set_client = utf8 */; |
|
CREATE TABLE `address` ( |
|
`address_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`currency` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`balance` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`last_interacted` date DEFAULT NULL, |
|
`source` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`user` int(11) DEFAULT NULL, |
|
PRIMARY KEY (`address_id`), |
|
KEY `user` (`user`), |
|
CONSTRAINT `address_ibfk_1` FOREIGN KEY (`user`) REFERENCES `user` (`user_id`) ON DELETE SET NULL, |
|
CONSTRAINT `address_ibfk_2` FOREIGN KEY (`currency`) REFERENCES `currency` (`id`) ON DELETE CASCADE |
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
/*!40101 SET character_set_client = @saved_cs_client */; |
|
|
|
-- |
|
-- Dumping data for table `address` |
|
-- |
|
|
|
LOCK TABLES `address` WRITE; |
|
/*!40000 ALTER TABLE `address` DISABLE KEYS */; |
|
/*!40000 ALTER TABLE `address` ENABLE KEYS */; |
|
UNLOCK TABLES; |
|
|
|
-- |
|
-- Table structure for table `currency` |
|
-- |
|
|
|
DROP TABLE IF EXISTS `currency`; |
|
/*!40101 SET @saved_cs_client = @@character_set_client */; |
|
/*!40101 SET character_set_client = utf8 */; |
|
CREATE TABLE `currency` ( |
|
`id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`price` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`last_check` datetime DEFAULT NULL, |
|
PRIMARY KEY (`id`) |
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
/*!40101 SET character_set_client = @saved_cs_client */; |
|
|
|
-- |
|
-- Dumping data for table `currency` |
|
-- |
|
|
|
LOCK TABLES `currency` WRITE; |
|
/*!40000 ALTER TABLE `currency` DISABLE KEYS */; |
|
INSERT INTO `currency` VALUES ('btc','49000','2021-10-02 00:00:00'),('eth','3500','2021-10-02 00:00:00'),('nano','4.5','2021-10-02 00:00:00'); |
|
/*!40000 ALTER TABLE `currency` ENABLE KEYS */; |
|
UNLOCK TABLES; |
|
|
|
-- |
|
-- 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` ( |
|
`user_id` int(11) NOT NULL AUTO_INCREMENT, |
|
`username` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, |
|
`last_checked` datetime DEFAULT NULL, |
|
`last_checked_r` datetime DEFAULT NULL, |
|
`last_checked_t` datetime DEFAULT NULL, |
|
PRIMARY KEY (`user_id`) |
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
/*!40101 SET character_set_client = @saved_cs_client */; |
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; |
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; |
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; |
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; |
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; |
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; |
|
|
|
-- Dump completed on 2021-10-07 14:20:47
|
|
|