mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v check-md: reduce false positives for too long lines in various cases (real problems are easier to spot now)
This commit is contained in:
@@ -4037,8 +4037,13 @@ struct Customer {
|
||||
|
||||
db := sqlite.connect('customers.db') ?
|
||||
|
||||
// you can create tables
|
||||
// CREATE TABLE IF NOT EXISTS `Customer` (`id` INTEGER PRIMARY KEY, `name` TEXT NOT NULL, `nr_orders` INTEGER, `country` TEXT NOT NULL)
|
||||
// you can create tables:
|
||||
// CREATE TABLE IF NOT EXISTS `Customer` (
|
||||
// `id` INTEGER PRIMARY KEY,
|
||||
// `name` TEXT NOT NULL,
|
||||
// `nr_orders` INTEGER,
|
||||
// `country` TEXT NOT NULL
|
||||
// )
|
||||
sql db {
|
||||
create table Customer
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user