Sha256: 2ca6c81911474254a2988afe170250e63fa05ac05ea317a1c30bdda2374fdcef

Contents?: true

Size: 282 Bytes

Versions: 8

Compression:

Stored size: 282 Bytes

Contents

class CreateTodoRailsTasks < ActiveRecord::Migration
  def change
    create_table :todo_rails_tasks do |t|
      t.string :title
      t.boolean :completed
      t.integer :row_order
      t.integer :priority
      t.text :comment

      t.timestamps null: false
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
todo_rails-0.1.7 db/migrate/20150729111534_create_todo_rails_tasks.rb
todo_rails-0.1.6 db/migrate/20150729111534_create_todo_rails_tasks.rb
todo_rails-0.1.5 db/migrate/20150729111534_create_todo_rails_tasks.rb
todo_rails-0.1.4 db/migrate/20150729111534_create_todo_rails_tasks.rb
todo_rails-0.1.3 db/migrate/20150729111534_create_todo_rails_tasks.rb
todo_rails-0.1.2 db/migrate/20150729111534_create_todo_rails_tasks.rb
todo_rails-0.1.1 db/migrate/20150729111534_create_todo_rails_tasks.rb
todo_rails-0.1.0 db/migrate/20150729111534_create_todo_rails_tasks.rb