Sha256: 35911c3a3ff1291da2a5928d744fabf228011fb936a55a714cce34356685417a
Contents?: true
Size: 229 Bytes
Versions: 31
Compression:
Stored size: 229 Bytes
Contents
class CreateFansMigration < ActiveRecord::Migration def self.up create_table :fans do |t| t.timestamps t.string :name, :limit => 100, :null => false end end def self.down drop_table :fans end end
Version data entries
31 entries across 31 versions & 6 rubygems