Sha256: 03c95e5b37cab0767723d1a299357a293ae5d502c5c94e32d61086898fc17294
Contents?: true
Size: 269 Bytes
Versions: 20
Compression:
Stored size: 269 Bytes
Contents
class CreateProperties < ActiveRecord::Migration def self.up create_table :properties do |t| t.string :name, :unique => true t.string :presentation, :null => false t.timestamps end end def self.down drop_table :properties end end
Version data entries
20 entries across 20 versions & 3 rubygems