Skip to content

Instantly share code, notes, and snippets.

@maksimerohin
Last active June 11, 2022 11:31
Show Gist options
  • Save maksimerohin/be74f962aa837a65d8aa8622995b39e9 to your computer and use it in GitHub Desktop.
Save maksimerohin/be74f962aa837a65d8aa8622995b39e9 to your computer and use it in GitHub Desktop.

Начиная с Laravel 9.14 теперь есть возможность добавлять комментарии в MySQL- и PostgreSQL-таблицы

Schema::table('posts', function(Blueprint $table) {
  $table->comment('This is a table comment');
  $table->string('name')->comment('This is a column comment');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment