mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			239 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			239 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* @var $className string the new migration class name */
 | 
						|
 | 
						|
echo "<?php\n";
 | 
						|
?>
 | 
						|
 | 
						|
use console\db\Migration;
 | 
						|
 | 
						|
class <?= $className ?> extends Migration {
 | 
						|
 | 
						|
    public function safeUp() {
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    public function safeDown() {
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
}
 |