This repository was archived by the owner on Dec 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmoved_to_cold.sql
More file actions
44 lines (37 loc) · 1.34 KB
/
Copy pathmoved_to_cold.sql
File metadata and controls
44 lines (37 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-- phpMyAdmin SQL Dump
-- version 3.4.10.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Oct 28, 2014 at 03:35 PM
-- Server version: 5.5.38
-- PHP Version: 5.3.10-1ubuntu3.14
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 utf8 */;
--
-- Database: `testnet`
--
-- --------------------------------------------------------
--
-- Table structure for table `moved_to_cold`
-- This may be a slightly redundant process but this table records the transaction before sending to the remote
-- shared hosting server AND records the cold storage address the coins were sent too.
CREATE TABLE IF NOT EXISTS `moved_to_cold` (
`id` int(12) NOT NULL AUTO_INCREMENT,
`account` int(10) NOT NULL,
`address` varchar(34) NOT NULL,
`amount` decimal(34,29) NOT NULL,
`category` varchar(10) NOT NULL,
`confirmations` int(4) NOT NULL,
`txid` varchar(255) NOT NULL,
`sendto_address` varchar(34) NOT NULL,
`walletconflicts` text NOT NULL,
`time` int(12) NOT NULL,
`timereceived` int(12) NOT NULL,
`flag` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=69 ;