Skip to content

Instantly share code, notes, and snippets.

@Kulasangar
Created July 6, 2021 08:48
Show Gist options
  • Save Kulasangar/1e511d63e04e277bfe6e0aa63a4de7d4 to your computer and use it in GitHub Desktop.
Save Kulasangar/1e511d63e04e277bfe6e0aa63a4de7d4 to your computer and use it in GitHub Desktop.
{
"test_db": {
"columns": [
{
"column": "id",
"length": "10",
"data type": "INT"
},
{
"column": "name",
"length": "45",
"data type": "VARCHAR"
},
{
"column": "age",
"length": "10",
"data type": "INT"
},
{
"column": "city",
"length": "45",
"data type": "VARCHAR"
},
{
"column": "dob",
"length": "19",
"data type": "DATETIME"
}
],
"primary_key": "id"
},
"test_db_v2": {
"columns": [
{
"column": "idtest_db_v2",
"length": "10",
"data type": "INT"
},
{
"column": "title",
"length": "45",
"data type": "VARCHAR"
},
{
"column": "address",
"length": "45",
"data type": "VARCHAR"
},
{
"column": "zip_code",
"length": "10",
"data type": "INT"
},
{
"column": "height",
"length": "10",
"data type": "DECIMAL"
},
{
"column": "timestamp",
"length": "19",
"data type": "DATETIME"
}
],
"primary_key": "idtest_db_v2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment