Skip to content

Commit

Permalink
push demo
Browse files Browse the repository at this point in the history
  • Loading branch information
joshcirre committed Nov 12, 2024
1 parent 95bf6ea commit d8f7cc6
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 207 deletions.
192 changes: 0 additions & 192 deletions app/Console/Commands/FissionInstall.php

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('pan_analytics', function (Blueprint $table): void {
$table->id();
$table->string('name');

$table->unsignedBigInteger('impressions')->default(0);
$table->unsignedBigInteger('hovers')->default(0);
$table->unsignedBigInteger('clicks')->default(0);
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('pan_analytics');
}
};
14 changes: 0 additions & 14 deletions install.sh

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d8f7cc6

Please sign in to comment.