createTable('settings', [ 'id' => $this->primaryKey(), 'param' => $this->string(), 'value' => $this->string() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('settings'); } }