Sha256: 35b577c552ee7111e97f32725c203d3d7854893655826efc7d050f1b7cdbbe1f
Contents?: true
Size: 475 Bytes
Versions: 5
Compression:
Stored size: 475 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
5 entries across 5 versions & 1 rubygems