Skip to content

Commit

Permalink
Fixing the migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanedev-maroc committed Mar 5, 2017
1 parent c3c9456 commit d878116
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public function up()
{
$this->createSchema(function(Blueprint $table) {
$table->increments('id');
$table->text('old_url');
$table->text('new_url');
$table->string('old_url', 255);
$table->string('new_url', 255);
$table->integer('status');
$table->timestamps();

Expand Down

0 comments on commit d878116

Please sign in to comment.