class CreateSharedTasks

Public Instance Methods

change() click to toggle source
# File lib/generators/shared_tasks/templates/migration.rb, line 2
def change
  create_table :shared_tasks do |t|
    t.string :task
    t.timestamps
  end
end