芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/erp.digitalhubbd.com/database/migrations/2021_03_08_020247_create_units_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUnitsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('units', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->string('name', 192); $table->string('ShortName', 192); $table->integer('base_unit')->nullable()->index('base_unit'); $table->char('operator', 192)->nullable()->default('*'); $table->float('operator_value', 10, 0)->nullable()->default(1); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('units'); } }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage