public function up()
 {
     $this->createTable(\bariew\logAbstractModule\models\Log::tableName(), ['id' => $this->primaryKey(), 'user_id' => $this->integer(), 'owner_id' => $this->integer(), 'event' => $this->string(), 'model_name' => $this->string(), 'model_id' => $this->string(), 'message' => $this->text(), 'created_at' => $this->integer()]);
 }