diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-12-16 06:18:44 -0600 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-12-16 06:18:44 -0600 |
commit | 158b36e51c8c2925d6c8af6e08380369d019378e (patch) | |
tree | f91fadecf85e982714927eb6ab451c9173e37de0 /app_move_log.sql |
Initial commit
Diffstat (limited to 'app_move_log.sql')
-rw-r--r-- | app_move_log.sql | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app_move_log.sql b/app_move_log.sql new file mode 100644 index 0000000..bb5417c --- /dev/null +++ b/app_move_log.sql @@ -0,0 +1,18 @@ +INSERT INTO move_log ( + game_id, + board, + turn, + move_num, + turn_num, + move, + timestamp +) +VALUES ( + :game_id, + :board, + :turn, + :move_num, + :turn_num, + :move, + :timestamp +)
\ No newline at end of file |