George C. Privon 6 лет назад
Родитель
Сommit
9bf1ff5023
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      code/create_database.rkt

+ 2 - 2
code/create_database.rkt

@@ -10,7 +10,7 @@
   (write-string (string-append "Creating database " dbloc "\n"))
   (write-string (string-append "Creating database " dbloc "\n"))
   (define conn (sqlite3-connect #:database dbloc
   (define conn (sqlite3-connect #:database dbloc
                                 #:mode 'create))
                                 #:mode 'create))
-  (query-exec conn "CREATE TABLE proposals (ID INTEGER NOT NULL,
+  (query-exec conn "CREATE TABLE predictions (ID INTEGER NOT NULL,
 date TEXT NOT NULL,
 date TEXT NOT NULL,
 prediction TEXT NOT NULL,
 prediction TEXT NOT NULL,
 categories TEXT DEFAULT '',
 categories TEXT DEFAULT '',
@@ -27,7 +27,7 @@ comments TEXT DEFAULT '')")
 (cond (not (sqlite3-available?))
 (cond (not (sqlite3-available?))
       (error "Sqlite3 library not available."))
       (error "Sqlite3 library not available."))
 
 
-; create the database and add the `proposals` table if it doesn't exist
+; create the database and add the `predictions` table if it doesn't exist
 (if (not (file-exists? dbloc))
 (if (not (file-exists? dbloc))
     (createdb dbloc)
     (createdb dbloc)
     (write-string "Database exists. Exiting."))
     (write-string "Database exists. Exiting."))