bugfix docs bad insert overload

This commit is contained in:
silverqx
2022-05-17 17:11:12 +02:00
parent 5524407a23
commit 0e86a09ea9

View File

@@ -317,8 +317,8 @@ And paste the following code.
void run() override
{
DB::table("posts")->insert({
{"name", "1. post"},
{"name", "2. post"},
{{"name", "1. post"}},
{{"name", "2. post"}},
});
}
};