db-sqlite icon indicating copy to clipboard operation
db-sqlite copied to clipboard

Support comments for tables and columns

Open Tigrov opened this issue 2 years ago • 0 comments

Related with yiisoft/db-migration#219

CREATE TABLE `table_name` -- table comment
(
    id INTEGER, -- field comment
);

Comments can be obtained using query

SELECT sql FROM sqlite_master WHERE type='table' AND tbl_name='table_name';

Tigrov avatar Oct 17 '23 09:10 Tigrov