Sha256: e19268586fe66fd7d1b9b12a66991bc75c21af3e355ac5761454ad1cedec677c
Contents?: true
Size: 347 Bytes
Versions: 3
Compression:
Stored size: 347 Bytes
Contents
class CreateSimpleCaptchaData < ActiveRecord::Migration[5.0] 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
3 entries across 3 versions & 1 rubygems