Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity-live] / vendor / plugins / acts_as_authenticated / generators / authenticated / templates / migration.rb
diff --git a/vendor/plugins/acts_as_authenticated/generators/authenticated/templates/migration.rb b/vendor/plugins/acts_as_authenticated/generators/authenticated/templates/migration.rb
new file mode 100644 (file)
index 0000000..3f736b8
--- /dev/null
@@ -0,0 +1,18 @@
+class <%= migration_name %> < ActiveRecord::Migration
+  def self.up
+    create_table "<%= table_name %>", :force => true do |t|
+      t.column :login,                     :string
+      t.column :email,                     :string
+      t.column :crypted_password,          :string, :limit => 40
+      t.column :salt,                      :string, :limit => 40
+      t.column :created_at,                :datetime
+      t.column :updated_at,                :datetime
+      t.column :remember_token,            :string
+      t.column :remember_token_expires_at, :datetime
+    end
+  end
+
+  def self.down
+    drop_table "<%= table_name %>"
+  end
+end

Benjamin Mako Hill || Want to submit a patch?