AddWebhookSourceDetails::up PHP Метод

up() публичный Метод

Run the migrations.
public up ( )
    public function up()
    {
        Schema::table('deployments', function (Blueprint $table) {
            $table->string('source')->nullable();
            $table->string('build_url')->nullable();
        });
    }
AddWebhookSourceDetails