|
@@ -32,10 +32,7 @@ def convert_desc2(col):
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-with open("tables.txt", "r") as rh:
|
|
|
- tables = rh.read().split("\n")
|
|
|
+tables = []
|
|
|
res = {}
|
|
|
|
|
|
|
|
@@ -104,6 +101,8 @@ def tables_create():
|
|
|
|
|
|
|
|
|
def schema():
|
|
|
+ with open("tables.txt", "r") as rh:
|
|
|
+ tables.extend(rh.read().split("\n"))
|
|
|
tables_cols()
|
|
|
pkeys()
|
|
|
|