Skip to content
Open
Changes from all commits
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,23 +73,23 @@ which should output something like this:

```bash
....
rake audited:add_migration # Installs Sequel::Audited migration, but does not run it.
rake audited:migrate:install # Installs Sequel::Audited migration, but does not run it.
....
```

Run the sequel-audit rake task:

```bash
bundle exec rake audited:add_migration
bundle exec rake audited:migrate:install
```

After this you can comment out the rake task in your Rakefile until you need to update. And then
finally run db:migrate to update your DB.

```bash
bundle exec rake db:migrate
```


### 3) Add the `:uuid` plugin

You need to add the `:uuid` plugin to models as follows:
Expand Down