This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
binaryattraction/schema/migrations/002_create_photos_migration.rb

16 lines
339 B
Ruby
Raw Normal View History

2008-10-01 02:19:35 -04:00
class CreatePhotosMigration < ActiveRecord::Migration
def self.up
create_table :photos do |t|
t.string :filename, :content_type, :email_hash
t.integer :width, :height
2008-10-01 02:19:35 -04:00
t.datetime :created_at
t.boolean :approved
2008-10-01 02:19:35 -04:00
end
add_index :photos, :email_hash
2008-10-01 02:19:35 -04:00
end
def self.down
drop_table :photos
end
end