An open API service indexing awesome lists of open source software.

https://github.com/himkt/optuna-schemata


https://github.com/himkt/optuna-schemata

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Optuna schemata

## MySQL

### (a) Vanilla MySQL

1. create database

```
% mysql -u [your name] # terminal
> create table [table name] -- mysql console
> exit;
```

2. create tables

```shell
make mysql
```

### (b) Ridgepole

1. setup

```shell
bundle install
```

2. create tables

```shell
make mysql_ridgepole
```