Related with yiisoft/db-migration#219 ```sql CREATE TABLE `table_name` -- table comment ( id INTEGER, -- field comment ); ``` Comments can be obtained using query ```sql SELECT sql FROM sqlite_master WHERE type='table' AND tbl_name='table_name'; ```
Related with yiisoft/db-migration#219
Comments can be obtained using query