Skip to content

Commit

Permalink
Merge migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Jan 12, 2025
1 parent e45d25c commit 1b5e892
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
return new class extends Migration {
public function up(): void
{
Schema::create('floor_prices', function (Blueprint $table) {
$table->id();
$table->string('symbol')->default('pizza-ninjas');
$table->integer('owners')->unsigned()->nullable();
$table->integer('supply')->unsigned()->nullable();
$table->integer('listed')->unsigned()->nullable();
$table->double('price_in_sats')->unsigned();
$table->timestamp('created_at');
});
Expand Down

This file was deleted.

0 comments on commit 1b5e892

Please sign in to comment.