43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Illuminate\Database\Migrations\Migration;
 | |
| use Illuminate\Database\Schema\Blueprint;
 | |
| 
 | |
| class CreateAccountsTable extends Migration
 | |
| {
 | |
|     /**
 | |
|      * Run the migrations.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function up()
 | |
|     {
 | |
|         Schema::create('accounts', function (Blueprint $table) {
 | |
|             $table->increments('id');
 | |
|             $table->integer('company_id');
 | |
|             $table->string('name');
 | |
|             $table->string('number');
 | |
|             $table->string('currency_code');
 | |
|             $table->double('opening_balance', 15, 4)->default('0.0000');
 | |
|             $table->string('bank_name')->nullable();
 | |
|             $table->string('bank_phone')->nullable();
 | |
|             $table->text('bank_address')->nullable();
 | |
|             $table->boolean('enabled');
 | |
|             $table->timestamps();
 | |
|             $table->softDeletes();
 | |
| 
 | |
|             $table->index('company_id');
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Reverse the migrations.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function down()
 | |
|     {
 | |
|         Schema::drop('accounts');
 | |
|     }
 | |
| }
 |