예제 #1
0
파일: Flat.php 프로젝트: gpopoteur/flat
 /**
  * Checks if the Schema or Database already exists
  * @param  string $flat Flat name
  * @return boolean      true if schema name already exists, false if not
  */
 public function exists($flat)
 {
     return $this->schema->exists($flat);
 }
예제 #2
0
 public function __construct(DatabaseManager $db, Artisan $artisan)
 {
     parent::__construct($db, $artisan);
     $this->directoryPath = 'flat-sqlite-db';
 }