createTable('checks_log', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'cehcks' => $this->smallInteger(), 'admin_id' => $this->integer(), 'tm' => $this->timestamp()->defaultExpression('NOW()') ]); } /** * @inheritdoc */ public function down() { $this->dropTable('checks_log'); } }