public function down()
 {
     $this->dropTable(UserChatMessage::tableName());
     return true;
 }
 public function down()
 {
     $this->dropTable(UserChatMessage::tableName());
     $this->createTable(UserChatMessage::tableName(), ['id' => $this->primaryKey(), 'author' => $this->string(16)->notNull(), 'gravatar' => $this->string(255)->notNull(), 'text' => $this->string(255)->notNull(), 'ts' => $this->timestamp()->notNull()->defaultValue('CURRENT_TIMESTAMP')]);
     return true;
 }