!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/notification/vendor/illuminate/database/Console/Migrations/   drwxr-xr-x
Free 13.25 GB of 57.97 GB (22.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MigrateMakeCommand.php (4.03 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Database\Console\Migrations;

use 
Illuminate\Database\Migrations\MigrationCreator;
use 
Illuminate\Support\Composer;
use 
Illuminate\Support\Str;

class 
MigrateMakeCommand extends BaseCommand
{
    
/**
     * The console command signature.
     *
     * @var string
     */
    
protected $signature 'make:migration {name : The name of the migration}
        {--create= : The table to be created}
        {--table= : The table to migrate}
        {--path= : The location where the migration file should be created}
        {--realpath : Indicate any provided migration file paths are pre-resolved absolute paths}
        {--fullpath : Output the full path of the migration}'
;

    
/**
     * The console command description.
     *
     * @var string
     */
    
protected $description 'Create a new migration file';

    
/**
     * The migration creator instance.
     *
     * @var \Illuminate\Database\Migrations\MigrationCreator
     */
    
protected $creator;

    
/**
     * The Composer instance.
     *
     * @var \Illuminate\Support\Composer
     */
    
protected $composer;

    
/**
     * Create a new migration install command instance.
     *
     * @param  \Illuminate\Database\Migrations\MigrationCreator  $creator
     * @param  \Illuminate\Support\Composer  $composer
     * @return void
     */
    
public function __construct(MigrationCreator $creatorComposer $composer)
    {
        
parent::__construct();

        
$this->creator $creator;
        
$this->composer $composer;
    }

    
/**
     * Execute the console command.
     *
     * @return void
     */
    
public function handle()
    {
        
// It's possible for the developer to specify the tables to modify in this
        // schema operation. The developer may also specify if this table needs
        // to be freshly created so we can create the appropriate migrations.
        
$name Str::snake(trim($this->input->getArgument('name')));

        
$table $this->input->getOption('table');

        
$create $this->input->getOption('create') ?: false;

        
// If no table was given as an option but a create option is given then we
        // will use the "create" option as the table name. This allows the devs
        // to pass a table name into this option as a short-cut for creating.
        
if (! $table && is_string($create)) {
            
$table $create;

            
$create true;
        }

        
// Next, we will attempt to guess the table name if this the migration has
        // "create" in the name. This will allow us to provide a convenient way
        // of creating migrations that create new tables for the application.
        
if (! $table) {
            [
$table$create] = TableGuesser::guess($name);
        }

        
// Now we are ready to write the migration out to disk. Once we've written
        // the migration out, we will dump-autoload for the entire framework to
        // make sure that the migrations are registered by the class loaders.
        
$this->writeMigration($name$table$create);

        
$this->composer->dumpAutoloads();
    }

    
/**
     * Write the migration file to disk.
     *
     * @param  string  $name
     * @param  string  $table
     * @param  bool  $create
     * @return string
     */
    
protected function writeMigration($name$table$create)
    {
        
$file $this->creator->create(
            
$name$this->getMigrationPath(), $table$create
        
);

        if (! 
$this->option('fullpath')) {
            
$file pathinfo($filePATHINFO_FILENAME);
        }

        
$this->line("<info>Created Migration:</info> {$file}");
    }

    
/**
     * Get migration path (either specified by '--path' option or default location).
     *
     * @return string
     */
    
protected function getMigrationPath()
    {
        if (! 
is_null($targetPath $this->input->getOption('path'))) {
            return ! 
$this->usingRealPath()
                            ? 
$this->laravel->basePath().'/'.$targetPath
                            
$targetPath;
        }

        return 
parent::getMigrationPath();
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0053 ]--