Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity] / db / migrate / 004_create_users.rb
diff --git a/db/migrate/004_create_users.rb b/db/migrate/004_create_users.rb
new file mode 100644 (file)
index 0000000..9c78b5f
--- /dev/null
@@ -0,0 +1,18 @@
+class CreateUsers < ActiveRecord::Migration
+  def self.up
+    create_table "users", :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 "users"
+  end
+end

Benjamin Mako Hill || Want to submit a patch?