public function down()
 {
     if ($this->isSqlite()) {
         echo '!!! SQLite does not support drop columns.' . PHP_EOL;
         return;
     }
     $this->dropColumn(Config::tableName(), 'perms');
 }
 public function down()
 {
     $this->dropTable(Config::tableName());
     $this->dropTable(Storage::tableName());
 }
예제 #3
0
 /**
  * Returns list of section names.
  * @return array
  */
 public static function getSections()
 {
     $rows = (new Query())->from(Config::tableName())->select('section')->distinct()->all();
     return array_map(function ($row) {
         return $row['section'];
     }, $rows);
 }