Sha256: 8ccf99da5c551accbeb7e40fca1e9b742139f40438e5bd7d2589d969fba9ab7a

Contents?: true

Size: 759 Bytes

Versions: 7

Compression:

Stored size: 759 Bytes

Contents

# This migration comes from notee (originally 20160605141437)

class CreateNoteePosts < ActiveRecord::Migration
  def change
    create_table :notee_posts do |t|

      # notee's base
      t.string  :title
      t.text    :content
      t.string  :slug
      t.integer :status, default: 0
      t.integer :category_id, default: 0
      t.integer :thumbnail_id, default: 0
      t.datetime :published_at
      t.integer :user_id
      t.boolean :is_deleted, null: false, default: false

      # seo
      t.string  :seo_keyword, default: ""
      t.string  :seo_description, default: ""

      # secret_published
      t.string :secret_published_password


      t.timestamps null: false
    end


    add_index :notee_posts, :slug, :unique => true
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
notee-1.1.2.4 db/migrate/20160605141437_create_notee_posts.rb
notee-1.1.2.3 db/migrate/20160605141437_create_notee_posts.rb
notee-1.1.2.2 db/migrate/20160605141437_create_notee_posts.rb
notee-1.1.2.1 db/migrate/20160605141437_create_notee_posts.rb
notee-1.1.2 db/migrate/20160605141437_create_notee_posts.rb
notee-1.1.1 db/migrate/20160605141437_create_notee_posts.rb
notee-1.1.0 db/migrate/20160605141437_create_notee_posts.rb