LoginSignup
1
1

More than 3 years have passed since last update.

onlineTool > dbdiagram.io > テキストによるDatabaseのテーブル設計

Last updated at Posted at 2020-03-04
動作環境
Windows 10 Pro (v1909)

背景

  • Databaseまではいかないが、複数ファイルの関係を整理したい
  • そういえば20年前にはDatabaseソフト作っていたなあ。。。
  • Tableをオンラインで生成する何かないだろうか

dbdiagram.io

  • テキストで編集可能
  • コメントも残せる
  • Export機能が利用可能
    • PDF Exportは動かない?
  • 10ダイアグラムまで (無料版)
    • テキストは別途自分のツールで保存すればいいか。。。
  • テキストペインでは入力補完が聞くので使いやすい

Table Crew {
  id int [pk]
  name varchar
  affil_id int [ref: > Affiliation.id]
  shift_id int [ref: > WorkingSchedule.id] 
  friend_id int 
  family_id int [ref: > Family.id]
}

Table Affiliation {
  id int [pk]
  name varchar
}

Table WorkingSchedule {
  id int [pk]
  startHour int // inclusive
  endHour int // exclusive
}

Table Family {
  id int [pK]
  name varcahr
}

{ACDB5AE6-726B-415E-B4C9-0863B6519FD5}.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1