Sha256: bd6ebc46e1fd36476ff6d235ccc7e329fb4615f606486420e74960ca5d6c17f5
Contents?: true
Size: 318 Bytes
Versions: 9
Compression:
Stored size: 318 Bytes
Contents
class KitsuneCreateKitsuneUsers < ActiveRecord::Migration def self.up create_table(:kitsune_users) do |t| t.string :email t.string :encrypted_password t.string :username t.string :salt t.string :remember_token end end def self.down drop_table :kitsune_users end end
Version data entries
9 entries across 9 versions & 2 rubygems