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

Version Path
autobots-0.2.3 test/dummy/db/migrate/20141119222556_schema.rb
autobots-0.2.2 test/dummy/db/migrate/20141119222556_schema.rb
autobots-0.2.1 test/dummy/db/migrate/20141119222556_schema.rb
autobots-0.2.0 test/dummy/db/migrate/20141119222556_schema.rb
autobots-0.1.0 test/dummy/db/migrate/20141119222556_schema.rb
autobots-0.0.1 test/dummy/db/migrate/20141119222556_schema.rb