jokes-api/db/migrate/20151012185754_create_jokes.rb
2015-10-12 16:30:43 -04:00

9 lines
159 B
Ruby

class CreateJokes < ActiveRecord::Migration
def change
create_table :jokes do |t|
t.string :joke
t.timestamps null: false
end
end
end