Class: CreateSurveys

Inherits:
Object
  • Object
show all
Defined in:
lib/od/surveys/generators/templates/migrate/20180523221331_create_surveys.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/od/surveys/generators/templates/migrate/20180523221331_create_surveys.rb', line 2

def change
  create_table :surveys do |t|
    t.string :description
    t.string :title

    t.timestamps
  end
end