Files
danbooru/db/migrate/20100205224030_create_uploads.rb

26 lines
757 B
Ruby

class CreateUploads < ActiveRecord::Migration[4.2]
def self.up
create_table :uploads do |t|
t.column :source, :string
t.column :file_path, :string
t.column :content_type, :string
t.column :rating, :character, :null => false
t.column :uploader_id, :integer, :null => false
t.column :uploader_ip_addr, "inet", :null => false
t.column :tag_string, :text, :null => false
t.column :status, :text, :null => false, :default => "pending"
t.column :backtrace, :text
t.column :post_id, :integer
t.column :md5_confirmation, :string
t.timestamps
end
add_index :uploads, :uploader_id
add_index :uploads, :uploader_ip_addr
end
def self.down
drop_table :uploads
end
end