Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
dartcafe committed Nov 25, 2018
commit 739f9468d3f9b51fc6f881b8d434b49b81c53baa
8 changes: 4 additions & 4 deletions lib/Migration/Version000009Date20181125061900.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,6 @@ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $op
'notnull' => false,
'default' => 0
]);
$table->addColumn('timestamp', Type::INTEGER, [
'notnull' => false,
'default' => 0
]);
$table->setPrimaryKey(['id']);
}

Expand All @@ -133,6 +129,10 @@ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $op
'notnull' => false, // maybe true?
'length' => 256,
]);
$table->addColumn('timestamp', Type::INTEGER, [
'notnull' => false,
'default' => 0
]);
$table->setPrimaryKey(['id']);
}

Expand Down