Sha256: cf325a2833ff35018a65506ca3559acda187e3ecd716de3c340fc20c733f2ac6

Contents?: true

Size: 730 Bytes

Versions: 3

Compression:

Stored size: 730 Bytes

Contents

class CreateStaffProfile < ActiveRecord::Migration

  def change
    create_table :staff_profiles do |t|
      t.string :name
      t.integer :face_id
      t.decimal :package, :precision => 6, :scale => 3

      t.string :slug
      t.string :previous_slug
      t.integer :position
      t.column :state , :string #use for publishing
      t.datetime :published_at
      t.integer :user_id

      t.timestamps
    end

    create_table :staff_profile_localizations do |t|
      t.text :bio
      t.integer :handwritting_id

      t.string :seo_title
      t.text :seo_keywords
      t.text :seo_description
      t.integer :fb_icon_id
      t.integer :parent_id
      t.integer :locale_id
      t.timestamps
    end

  end


end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gluttonberg-core-3.0.2 spec/dummy/db/20130625060411_create_staff_profile.rb
gluttonberg-core-3.0.1 spec/dummy/db/20130625060411_create_staff_profile.rb
gluttonberg-core-3.0.0 spec/dummy/db/20130625060411_create_staff_profile.rb