Skip to content

Instantly share code, notes, and snippets.

@hash32bot
Created December 25, 2018 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hash32bot/9269780de679f9f2396216efca2c78f3 to your computer and use it in GitHub Desktop.
Save hash32bot/9269780de679f9f2396216efca2c78f3 to your computer and use it in GitHub Desktop.
Sinatra App - Migration - http://bit.ly/2V9p6OL
class CreateSpeakers < ActiveRecord::Migration[5.1]
def change
create_table :speakers do |t|
t.string :name, null: false
t.string :twitter_handle
t.text :bio
t.string :talk_title
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment