Skip to content

Commit

Permalink
fix #1638 ブログ記事のタイトルを255文字にして保存しようとすると500エラーになる問題を解決 (#1639)
Browse files Browse the repository at this point in the history
  • Loading branch information
katokaisya committed Feb 5, 2021
1 parent 171801f commit 229a80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Baser/Config/Schema/dblogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function after($event = []) {

public $dblogs = [
'id' => ['type' => 'integer', 'null' => false, 'default' => null, 'length' => 8, 'key' => 'primary'],
'name' => ['type' => 'string', 'null' => true, 'default' => null],
'name' => ['type' => 'text', 'null' => true, 'default' => null],
'user_id' => ['type' => 'integer', 'null' => true, 'default' => null, 'length' => 8],
'created' => ['type' => 'datetime', 'null' => true, 'default' => null],
'modified' => ['type' => 'datetime', 'null' => true, 'default' => null],
Expand Down

0 comments on commit 229a80e

Please sign in to comment.