Browse Source

bugfix: mis-matched table column name in creation script

George C. Privon 2 năm trước cách đây
mục cha
commit
8420ec6172
2 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 1 0
      CHANGELOG.md
  2. 1 1
      create_database.rkt

+ 1 - 0
CHANGELOG.md

@@ -6,6 +6,7 @@
 
 - Add option to specify date ranges or limits using `--start-date` and `--end-date`. This only applies to `list-*` command options.
 - Add `--reuse-parameters`/`-r` for `add`. This will auto-fill the proposal type, submiting organzation, solicitation, and telescope from the most recent submission.
+- bugfix in database creation
 
 ## v0.2.x
 

+ 1 - 1
create_database.rkt

@@ -21,7 +21,7 @@ PI TEXT NOT NULL,
 title TEXT NOT NULL,
 CoI TEXT NOT NULL,
 status TEXT NOT NULL,
-submitteddate TEXT NOT NULL,
+submitdate TEXT NOT NULL,
 resultdate TEXT DEFAULT '')")
   (disconnect conn)
   (write-string (string-append "Database created at " dbloc "\n")))