Skip to content

Commit

Permalink
db fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krutyosila committed Dec 5, 2020
1 parent 1ae8131 commit 11c9d79
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function up()
$table->id();
$table->unsignedBigInteger('wallet_id');
$table->string('txn')->unique();
$table->enum('type', ['deposit', 'withdraw'])->nullable();
$table->enum('type', ['deposit', 'withdraw', 'bet', 'win'])->nullable();
$table->string('intermediary')->nullable();
$table->decimal('amount', 8,2)->default(0);
$table->boolean('confirmed')->default(1);
Expand Down

This file was deleted.

0 comments on commit 11c9d79

Please sign in to comment.