Sha256: ba9e378cdbb582ef5bf229f386587704357553028b8306a8bb068b028ba86d48
Contents?: true
Size: 316 Bytes
Versions: 4
Compression:
Stored size: 316 Bytes
Contents
class CreateUsers < ActiveRecord::Migration def self.up create_table :users do |t| t.column :name, :string t.column :email, :string t.column :password, :string t.column :preferences, :string t.timestamps end end def self.down drop_table :users end end
Version data entries
4 entries across 4 versions & 2 rubygems