I want to suspend users in my Rails application. I am using Devise. I had found a gem called devise_suspendable, but it requires a migration which include create_table :users but I had already used devise initial create_user migration and there are a lot of migration after that.
Now how can I implement devise_suspendable?
Or if anyone knows a better way then please recommend.
You need to add the following columns actually,
instead of t.suspendable use the add_column command to add these columns to your database