1
0
Fork 0
jokes-api/db/migrate/20151012185754_create_jokes.rb

10 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