diff options
Diffstat (limited to 'main/app/system/Bakery/Migration.php')
-rw-r--r-- | main/app/system/Bakery/Migration.php | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/main/app/system/Bakery/Migration.php b/main/app/system/Bakery/Migration.php deleted file mode 100644 index c4255d9..0000000 --- a/main/app/system/Bakery/Migration.php +++ /dev/null @@ -1,67 +0,0 @@ -<?php
-/**
- * UserFrosting (http://www.userfrosting.com)
- *
- * @link https://github.com/userfrosting/UserFrosting
- * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
- */
-
-namespace UserFrosting\System\Bakery;
-
-use Illuminate\Database\Schema\Builder;
-use Symfony\Component\Console\Style\SymfonyStyle;
-
-/**
- * Abstract Migration class.
- *
- * @abstract
- * @author Alex Weissman (https://alexanderweissman.com)
- */
-abstract class Migration
-{
- /**
- * @var Illuminate\Database\Schema\Builder $schema
- */
- protected $schema;
-
- /**
- * @var @Composer\IO\IOInterface
- */
- protected $io;
-
- /**
- * List of dependencies for this migration.
- * Should return an array of class required to be run before this migration
- */
- public $dependencies = [];
-
- /**
- * __construct function.
- *
- * @access public
- * @param Illuminate\Database\Schema\Builder $schema
- * @return void
- */
- public function __construct(Builder $schema, SymfonyStyle $io) {
- $this->schema = $schema;
- $this->io = $io;
- }
-
- /**
- * Method to apply changes to the database
- */
- public function up() {
- }
-
- /**
- * Method to revert changes applied by the `up` method
- */
- public function down() {
- }
-
- /**
- * Method to seed new information to the database
- */
- public function seed() {
- }
-}
|