Sha256: 28db4f292b26dbe68de441e626bb974bec3caaf1fbdabf05177313ed045d2a8a
Contents?: true
Size: 419 Bytes
Versions: 7
Compression:
Stored size: 419 Bytes
Contents
# -*- coding: utf-8 -*- class CreateUsersWithoutComment < ActiveRecord::Migration def self.up create_table :users do |t| t.string :login t.string :email t.string :crypted_password t.string :password_salt t.string :persistence_token t.string :single_access_token t.string :perishable_token t.timestamps end end def self.down drop_table :users end end
Version data entries
7 entries across 7 versions & 1 rubygems