Sha256: 5fae9e584dd28bf0cf541cd32e3fb1898ac890be2b8766a17361f8cb414e810f

Contents?: true

Size: 346 Bytes

Versions: 16

Compression:

Stored size: 346 Bytes

Contents

class CreateNoteeComments < ActiveRecord::Migration
  def change
    create_table :notee_comments do |t|
      t.integer :post_id
      t.text :content
      t.string :name
      t.string :email
      t.boolean :is_hidden, null: false, default: false
      t.boolean :is_deleted, null: false, default: false

      t.timestamps
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
notee-1.1.2.4 db/migrate/20160803154954_create_notee_comments.rb
notee-1.1.2.3 db/migrate/20160803154954_create_notee_comments.rb
notee-1.1.2.2 db/migrate/20160803154954_create_notee_comments.rb
notee-1.1.2.1 db/migrate/20160803154954_create_notee_comments.rb
notee-1.1.2 db/migrate/20160803154954_create_notee_comments.rb
notee-1.1.1 db/migrate/20160803154954_create_notee_comments.rb
notee-1.1.0 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.8 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.7 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.6 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.5 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.4 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.3 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.2 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.1 db/migrate/20160803154954_create_notee_comments.rb
notee-1.0.0 db/migrate/20160803154954_create_notee_comments.rb