negos_app/db/migrate/20151130121325_create_needs.rb
2016-02-16 21:09:48 +01:00

11 lines
186 B
Ruby
Executable File

class CreateNeeds < ActiveRecord::Migration
def change
create_table :needs do |t|
t.string :title
t.text :description
t.timestamps null: false
end
end
end