Sha256: 016b236eaaa79205f9e557b79c119c512c8c0e55b1038ca84e08280c482e23c3
Contents?: true
Size: 338 Bytes
Versions: 3
Compression:
Stored size: 338 Bytes
Contents
class CreateAdminWebPosts < ActiveRecord::Migration def change create_table :admin_web_posts do |t| t.references :user, null: false t.string :title, null: false t.string :abstract t.text :body, null: false t.string :image t.timestamps end add_index :admin_web_posts, :user_id end end
Version data entries
3 entries across 3 versions & 1 rubygems