Skip to content

Commit

Permalink
Remove updated_at field
Browse files Browse the repository at this point in the history
  • Loading branch information
MGatner committed Jul 18, 2019
1 parent f9a3382 commit f518a07
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Config/Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

Events::on('post_system', function () {
Services::audits()->save();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public function up()
'event' => ['type' => 'VARCHAR', 'constraint' => 31],
'summary' => ['type' => 'VARCHAR', 'constraint' => 255],
'created_at' => ['type' => 'DATETIME', 'null' => true],
'updated_at' => ['type' => 'DATETIME', 'null' => true],
];

$this->forge->addField('id');
Expand Down

0 comments on commit f518a07

Please sign in to comment.