Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Commit

Permalink
Revert "changes to make routes work"
Browse files Browse the repository at this point in the history
This reverts commit cd36dfa.
  • Loading branch information
wesobi committed Apr 14, 2016
1 parent cd36dfa commit 174c72c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 70 deletions.
67 changes: 0 additions & 67 deletions .htaccess

This file was deleted.

2 changes: 1 addition & 1 deletion config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
|
*/

'default' => 'sqlite',
'default' => 'mysql',

/*
|--------------------------------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,3 @@
$response->send();

$kernel->terminate($request, $response);

2 changes: 1 addition & 1 deletion plugins/rainlab/blog/updates/create_posts_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function up()
$table->text('content_html')->nullable();
$table->timestamp('published_at')->nullable();
$table->boolean('published')->default(false);
$table->integer('event_id')->nullable();
$table->integer('event_id');
$table->timestamps();
});
}
Expand Down

1 comment on commit 174c72c

@pietercolpaert
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a revert command in Git, or you can reset your local and remote HEAD. No need to do this manually with a new commit

$ git revert
usage: git revert [<options>] <commit-ish>...
   or: git revert <subcommand>

    --quit                end revert or cherry-pick sequence
    --continue            resume revert or cherry-pick sequence
    --abort               cancel revert or cherry-pick sequence
    -n, --no-commit       don't automatically commit
    -e, --edit            edit the commit message
    -s, --signoff         add Signed-off-by:
    -m, --mainline <n>    parent number
    --rerere-autoupdate   update the index with reused conflict resolution if possible
    --strategy <strategy>
                          merge strategy
    -X, --strategy-option <option>
                          option for merge strategy
    -S, --gpg-sign[=<key-id>]
                          GPG sign commit

Please sign in to comment.