aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/system/Bakery/Migration.php
diff options
context:
space:
mode:
authorMarvin Borner2018-06-28 21:15:57 +0200
committerMarvin Borner2018-06-28 21:15:57 +0200
commit15793496e8d56769c792cf39673c6e6dea3ec4d9 (patch)
tree1038f86603cdb52d7d9be5f125e5a88a25086995 /main/app/system/Bakery/Migration.php
parent8781338896a0cfb47c871a0ecb13cd3fdee09d8e (diff)
Preparing for complete rewrite..
Diffstat (limited to 'main/app/system/Bakery/Migration.php')
-rw-r--r--main/app/system/Bakery/Migration.php67
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() {
- }
-}