Sha256: 86dce533eb6c2a14b334ef0f4569aa4c5cb021e3eb2f0f55b8382a7ee2ebb07b
Contents?: true
Size: 346 Bytes
Versions: 37
Compression:
Stored size: 346 Bytes
Contents
class CreateSimpleCaptchaData < ActiveRecord::Migration def self.up create_table :simple_captcha_data do |t| t.string :key, :limit => 40 t.string :value, :limit => 6 t.timestamps end add_index :simple_captcha_data, :key, :name => "idx_key" end def self.down drop_table :simple_captcha_data end end
Version data entries
37 entries across 37 versions & 14 rubygems