Selasa, 15 Oktober 2024

Category Table Design In AsciiDoctor

  1. Open the Asciidoctor editor.
  2. type this following Latex code in the Latex editor:

    = Database Structure: inventory

    == Table Schema: category

    .category table
    [width="80%",frame="topbot",options="header, footer"]
    |===

    | Column Name | Nullable | Type      | Size |


    | id          | Not null | int       | 11   |

    | name        | Null     | varchar   | 100  |

    | description | Null     | varchar   | 200  |

    | created_by  | Null     | int       | 2    |

    | created_at  | Not Null | timestamp |      |

    | update_at   | Null     | date      |      |
    |===

  3. Result

    Database Structure: inventory

    Table Schema: category

    Table 1. category table
    Column NameNullableTypeSize
    idNot nullint11
    nameNullvarchar100
    descriptionNullvarchar200
    created_byNullint2
    created_atNot Nulltimestamp
    update_atNulldate

< to learn, click on AsciiDoctor Table Tutorial 1

Bibliography

  • https://daily.dev/
  • https://devdocs.io/
  • https://dev.mysql.com/
  • https://tableconvert.com/
  • sql2asciidoc
database table, table design, database design, erd table

Related Post

Tidak ada komentar:

Posting Komentar

Various Other Posts