From 50370a41a8d380c855995b2b15df24a5775bb12a Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Mon, 23 Jan 2017 00:12:06 +0000 Subject: [PATCH] sql updated --- sql/openmonero.sql | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/sql/openmonero.sql b/sql/openmonero.sql index 9bf725b..e098cee 100644 --- a/sql/openmonero.sql +++ b/sql/openmonero.sql @@ -3,9 +3,9 @@ -- https://www.phpmyadmin.net/ -- -- Host: localhost --- Generation Time: Jan 13, 2017 at 04:51 AM +-- Generation Time: Jan 23, 2017 at 12:11 AM -- Server version: 10.1.20-MariaDB --- PHP Version: 7.0.14 +-- PHP Version: 7.1.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; @@ -111,6 +111,7 @@ CREATE TABLE `Transactions` ( `total_sent` bigint(20) UNSIGNED NOT NULL, `unlock_time` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `height` bigint(20) UNSIGNED NOT NULL DEFAULT '0', + `spendable` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Has 10 blocks pasted since it was indexed?', `coinbase` tinyint(1) NOT NULL DEFAULT '0', `payment_id` varchar(64) NOT NULL DEFAULT '', `mixin` bigint(20) UNSIGNED NOT NULL DEFAULT '0', @@ -203,12 +204,12 @@ ALTER TABLE `Accounts` -- AUTO_INCREMENT for table `Inputs` -- ALTER TABLE `Inputs` - MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=487; + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=117; -- -- AUTO_INCREMENT for table `Outputs` -- ALTER TABLE `Outputs` - MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=300; + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=73; -- -- AUTO_INCREMENT for table `Payments` -- @@ -218,7 +219,7 @@ ALTER TABLE `Payments` -- AUTO_INCREMENT for table `Transactions` -- ALTER TABLE `Transactions` - MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=428; + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=115; -- -- Constraints for dumped tables --