added attachment_fu and made the set of changes
[selectricity] / db / migrate / 004_create_users.rb
diff --git a/db/migrate/004_create_users.rb b/db/migrate/004_create_users.rb
deleted file mode 100644 (file)
index 9c78b5f..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-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?