Sha256: 0ae98a0ac08b0a9f20769ed7c4d6976d16fd693f28dea7fc319c1767668bb2ad
Contents?: true
Size: 444 Bytes
Versions: 24
Compression:
Stored size: 444 Bytes
Contents
# This migration comes from cmor_blog (originally 20160214133500) class CreateCmorBlogPosts < ActiveRecord::Migration[4.2] def change create_table :cmor_blog_posts do |t| t.string :title t.text :body t.timestamp :published_at t.integer :created_by_id t.integer :updated_by_id t.string :slug t.integer :position t.timestamps null: false t.index :slug, unique: true end end end
Version data entries
24 entries across 24 versions & 1 rubygems