11 lines
186 B
Ruby
Executable File
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
|