lib/generators/archer/templates/migration.rb.tt in archer-rails-0.2.0 vs lib/generators/archer/templates/migration.rb.tt in archer-rails-0.2.1
- old
+ new
@@ -1,10 +1,10 @@
class <%= migration_class_name %> < ActiveRecord::Migration<%= migration_version %>
def change
create_table :archer_history do |t|
t.string :user
t.text :commands
- t.timestamp :updated_at
+ t.datetime :updated_at
end
add_index :archer_history, :user, unique: true
end
end