new: create tables & add campaigns, runs, ps_boards, single run results

- currently, test automatically opens sqlitebrowser
- ext package is not well checked
This commit is contained in:
Wataru Otsubo 2024-09-12 20:26:38 +09:00 committed by qwjyh
commit eba8d8f395
10 changed files with 1203 additions and 0 deletions

15
src/PSBoardDataBase.jl Normal file
View file

@ -0,0 +1,15 @@
module PSBoardDataBase
using SQLite
using DBInterface
using Tables
using DataFrames
using Dates
include("create_table.jl")
include("import_data.jl")
greet() = print("Hello World!")
end # module PSBoardDataBase