Sha256: a6f79d1322af0036cb1fe446007e85942e12a593ca850c946d3ffbe3913f6f17
Contents?: true
Size: 349 Bytes
Versions: 6
Compression:
Stored size: 349 Bytes
Contents
class Schema < ActiveRecord::Migration def change create_table :projects do |t| t.string :name end create_table :issues do |t| t.belongs_to :project t.string :title t.string :body end create_table :comments do |t| t.belongs_to :issue t.string :title t.string :body end end end
Version data entries
6 entries across 6 versions & 1 rubygems