Sha256: 8f15034789fa73e168eeb7b22ad95c3ef6948dea09cca86820188af532bd0b82
Contents?: true
Size: 685 Bytes
Versions: 7
Compression:
Stored size: 685 Bytes
Contents
class CreateProjects < ActiveRecord::Migration[5.1] def change create_table :projects do |t| t.string :name, :null => false, limit: 128 t.string :permalink, :null => false, limit: 128 t.string :meta_description, :null => true, limit: 512 t.text :description t.string :client, :null => false, limit: 128 t.references :category t.string :status, :null => false, :default=>"unpublished", :limit=>16 t.boolean :featured, default: false t.integer :priority, default: 1, null: false t.timestamps null: false end add_index :projects, :permalink, :unique => true add_index :projects, :status end end
Version data entries
7 entries across 7 versions & 1 rubygems