Sha256: 4144a536e7b9489ceb7e83adfcfee12466a312fd6d226ddc6d1b2e39ed011026

Contents?: true

Size: 203 Bytes

Versions: 5

Compression:

Stored size: 203 Bytes

Contents

class CreateTodos < ActiveRecord::Migration
  def change
    create_table :todos do |t|
      t.boolean :completed, default: false, null: false
      t.string :title
      t.timestamps
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
half-pipe-0.3.0.beta.2 examples/todomvc-rails/db/migrate/20130518030840_create_todos.rb
half-pipe-0.3.0.beta.1 examples/todomvc-rails/db/migrate/20130518030840_create_todos.rb
half-pipe-0.3.0.alpha.5 examples/todomvc-rails/db/migrate/20130518030840_create_todos.rb
half-pipe-0.3.0.alpha.4 examples/todomvc-rails/db/migrate/20130518030840_create_todos.rb
half-pipe-0.3.0.alpha.3 examples/todomvc-rails/db/migrate/20130518030840_create_todos.rb