Sha256: 56a69fc71c398aca804b5d7f7dfeb2171b85342ef695fcdc9b9f7f969582caf1
Contents?: true
Size: 454 Bytes
Versions: 51
Compression:
Stored size: 454 Bytes
Contents
class InitMigration < ActiveRecord::Migration def change create_table "posts", force: true do |t| t.text "content" t.datetime "created_at" t.datetime "updated_at" t.integer "user_id" end add_index "posts", ["user_id"] create_table "users", force: true do |t| t.string "username" t.string "email", null: false t.datetime "created_at" t.datetime "updated_at" end end end
Version data entries
51 entries across 51 versions & 1 rubygems