Sha256: 3388712106de31c6bb3b52a2134d31d021be3fd19b1078d5036db9682144fdc5
Contents?: true
Size: 185 Bytes
Versions: 11
Compression:
Stored size: 185 Bytes
Contents
class CreateProjects < ActiveRecord::Migration def self.up create_table(:projects) do |t| t.string :title end end def self.down drop_table(:projects) end end
Version data entries
11 entries across 11 versions & 1 rubygems