Sha256: 27c3955a05b14b1e59c4a80f4b5d147c54d0e5cdc2c077eda58585250b835016
Contents?: true
Size: 475 Bytes
Versions: 11
Compression:
Stored size: 475 Bytes
Contents
# This migration comes from tb_blog (originally 20120125180945) class CreateSpudPosts < ActiveRecord::Migration def change create_table :spud_posts do |t| t.integer :spud_user_id t.string :title t.text :content t.boolean :comments_enabled, :default => false t.boolean :visible, :default => true t.datetime :published_at t.timestamps end add_index :spud_posts, :spud_user_id add_index :spud_posts, :visible end end
Version data entries
11 entries across 11 versions & 1 rubygems