Skip to content

Commit

Permalink
Fix migration defaults.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Oct 6, 2023
1 parent a460bf9 commit 0bf48a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/Migrations/20150602010203_Rating.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public function up() {
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8_unicode_ci NOT NULL,
`rating_count` int(10) unsigned NOT NULL,
`rating_sum` int(10) unsigned NOT NULL,
`rating_count` int(10) unsigned NOT NULL DEFAULT '0',
`rating_sum` int(10) unsigned NOT NULL DEFAULT '0',
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
Expand Down
1 change: 0 additions & 1 deletion config/app_custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@
],
'generatorTasks' => [
ServiceTask::class,
//FormatIconFontAwesome4Task::class,
IconRenderTask::class,
],
'classAnnotatorTasks' => [
Expand Down

0 comments on commit 0bf48a0

Please sign in to comment.