diff --git a/README.md b/README.md index 947216a..a3b9506 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ composer require silverstripe/hybridsessions ## Setup -* `/dev/build?flush=all` to setup the necessary tables +* `sake db:build --flush` to setup the necessary tables * In order to initiate the session handler is is necessary to add a snippet of code to your `_config.php` file, along with a private key used to encrypt user cookies. diff --git a/src/Store/DatabaseStore.php b/src/Store/DatabaseStore.php index 37aec55..5322f6f 100644 --- a/src/Store/DatabaseStore.php +++ b/src/Store/DatabaseStore.php @@ -36,7 +36,7 @@ protected function isDatabaseReady(): bool throw new Exception('HybridSessions\Store\DatabaseStore currently only works with MySQL databases'); } - // Prevent freakout during dev/build + // Prevent freakout while building the db return ClassInfo::hasTable('HybridSessionDataObject'); }