Skip to content
Snippets Groups Projects
Commit 3b647b2d authored by xiphon's avatar xiphon
Browse files

db: add 'confirmations' field to deposits table

parent a6c8edbe
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ class CreateDepositsTable extends Migration ...@@ -16,6 +16,7 @@ class CreateDepositsTable extends Migration
Schema::create('deposits', function (Blueprint $table) { Schema::create('deposits', function (Blueprint $table) {
$table->increments('id'); $table->increments('id');
$table->string('payment_id'); $table->string('payment_id');
$table->unsignedInteger('confirmations')->default(0);
$table->string('amount'); $table->string('amount');
$table->dateTime('time_received'); $table->dateTime('time_received');
$table->string('tx_id'); $table->string('tx_id');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment