35 lines
502 B
PHP
35 lines
502 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
class CreateBankTable extends Migration {
|
|
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('Bank', function(Blueprint $table)
|
|
{
|
|
$table->integer('ID', true);
|
|
$table->string('BankNum', 3);
|
|
$table->string('BankName', 10);
|
|
});
|
|
}
|
|
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('Bank');
|
|
}
|
|
|
|
}
|