Browse Source

sql: fixed typo on sql schema and added cashier_tree.sql

lunar-mining 4 years ago
parent
commit
5025d9359b
3 changed files with 6 additions and 2 deletions
  1. 1 1
      sql/cashier.sql
  2. 4 0
      sql/cashier_tree.sql
  3. 1 1
      sql/tree.sql

+ 1 - 1
sql/cashier.sql

@@ -28,5 +28,5 @@ CREATE TABLE IF NOT EXISTS withdraw_keypairs(
 );
 );
 
 
 CREATE TABLE IF NOT EXISTS tree(
 CREATE TABLE IF NOT EXISTS tree(
-	tree BLOB NOT NULL,
+	tree BLOB NOT NULL
 );
 );

+ 4 - 0
sql/cashier_tree.sql

@@ -0,0 +1,4 @@
+CREATE TABLE IF NOT EXISTS tree(
+	tree BLOB NOT NULL
+);
+

+ 1 - 1
sql/tree.sql

@@ -1,4 +1,4 @@
 CREATE TABLE IF NOT EXISTS tree(
 CREATE TABLE IF NOT EXISTS tree(
-	tree BLOB NOT NULL,
+	tree BLOB NOT NULL
 );
 );