2008-10-01 02:19:35 -04:00
|
|
|
class CreatePhotosMigration < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
create_table :photos do |t|
|
2008-10-11 04:22:58 -04:00
|
|
|
t.string :filename, :content_type, :email_hash
|
2008-10-15 02:31:50 -04:00
|
|
|
t.integer :width, :height, :user_id
|
2008-10-01 02:19:35 -04:00
|
|
|
t.datetime :created_at
|
2008-10-15 02:31:50 -04:00
|
|
|
t.boolean :approved, :default => false
|
2008-10-01 02:19:35 -04:00
|
|
|
end
|
2008-10-11 04:22:58 -04:00
|
|
|
add_index :photos, :email_hash
|
2008-10-15 02:31:50 -04:00
|
|
|
add_index :photos, :user_id
|
2008-10-01 02:19:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :photos
|
|
|
|
end
|
|
|
|
end
|