Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / db / migrate / 001_create_users.rb
1 class CreateUsers < ActiveRecord::Migration
2   def self.up
3     create_table "users", :force => true do |t|
4       t.string   "login",                       :limit => 64, :default => "",        :null => false
5       t.string   "email",                                     :default => "",        :null => false
6       t.string   "crypted_password",            :limit => 64, :default => "",        :null => false
7       t.string   "salt",                        :limit => 64, :default => "",        :null => false
8       t.datetime "created_at"
9       t.datetime "updated_at"
10     end
11   end
12
13   def self.down
14     drop_table :users
15   end
16 end