id(); $table->string('name')->nullable(); $table->integer('limit_min')->nullable(); $table->integer('limit_max')->nullable(); $table->string('accountable_type'); $table->unsignedBigInteger('accountable_id'); $table->integer('cyclos_id')->unique()->nullable(); $table->timestamps(); $table->datetime('inactive_at')->nullable(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('accounts'); } }