1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- /**
- * Class CreateInvestsTable.
- */
- class CreateInvestsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('invests', function(Blueprint $table) {
- $table->increments('id');
- $table->string('title')->default('')->comment('投资名称');
- $table->double('invest_money',16,6)->default(0)->comment('投入金额');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('invests');
- }
- }
|