Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
monero-project
CCS Backend
Commits
3b647b2d
Commit
3b647b2d
authored
Jan 27, 2019
by
xiphon
Browse files
db: add 'confirmations' field to deposits table
parent
a6c8edbe
Changes
1
Hide whitespace changes
Inline
Side-by-side
database/migrations/2018_09_10_211659_create_deposits_table.php
View file @
3b647b2d
...
...
@@ -16,6 +16,7 @@ class CreateDepositsTable extends Migration
Schema
::
create
(
'deposits'
,
function
(
Blueprint
$table
)
{
$table
->
increments
(
'id'
);
$table
->
string
(
'payment_id'
);
$table
->
unsignedInteger
(
'confirmations'
)
->
default
(
0
);
$table
->
string
(
'amount'
);
$table
->
dateTime
(
'time_received'
);
$table
->
string
(
'tx_id'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment