1
0
Fork 0
jokes-rails/db/migrate/20160309001831_create_jokes.rb

11 lines
185 B
Ruby

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