acts_as_archive icon indicating copy to clipboard operation
acts_as_archive copied to clipboard

Don't delete your records, move them to a different table

Results 23 acts_as_archive issues
Sort by recently updated
recently updated
newest added

The timestamps are missing on the migrations generated after adding acts_as_archive to my project. It appears to be related to a bug in also_migrate. This just updates the version of...

Hi Winton, here is a fix for the polymorphic association issue. The point is to check the kind of association (polymorphic and dependent) before calling ReflexionAssociation#klass

Looks like a great gem, I was a little hazy in getting this all set up though. It would be more clear if the readme highlighted the need to call...

Hi, I have created the config file but after running migration, no archive table is created. I am using Rails 3.2 and ruby 1.9 and latest version of acts_as_archive. Based...

I just added acts_as_archive to a brand new Rails 3.1 app and I get this error when running rake db:migrate : ``` AlsoMigrate error: undefined local variable or method `old_table'...

$ rails generate active_admin:install Causes this error on Ruby 1.9.2, Rails 3.1, gem --version 1.8.10 ``` /lib/ruby/gems/1.9.1/gems/psych-1.2.1/lib/psych.rb:157:in `parse': (): couldn't parse YAML at line 1 column 9 (Psych::SyntaxError) from /opt/ruby/ruby-1.9.2-p290/lib/ruby/gems/1.9.1/gems/psych-1.2.1/lib/psych.rb:157:in...

Running rails 3.1.3. I'm using this branch: https://github.com/stipple/acts_as_archive and having a problem with restoring records on STI tables. I have a User model, and a Student model that inherits from...

when using : rails g migration xxx, the created migration will have no more numbering see my problem here : http://stackoverflow.com/questions/10855883/rails-generate-migration-no-more-version-number-acts-as-archive-compatibility? I'm using rails 3.2 - ruby 1.9.2 - rvm...

even with suggested modifications in code for running 3.1 fine for db:migrate, but cannot do db:rollback correctly.. not running fine with migrations in development mode: when doing a rake db:rollback...

Within the **Delete records without archiving** section, shouldn't the line ``` Article::Archive.first.destroy! ``` be this instead ``` Article.first.destroy! ``` Also, is there a `Model::Archive#restore` method available? The idea of destroying...