Sha256: 9bb597120e89141d413415106036dc264fb6f0cdd1e2577c986be26b082d7bfc
Contents?: true
Size: 224 Bytes
Versions: 8
Compression:
Stored size: 224 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def change create_table :posts do |t| t.string :title t.string :slug t.timestamps null: false end add_index :posts, :slug, unique: true end end
Version data entries
8 entries across 8 versions & 1 rubygems