class CreateKidungs < ActiveRecord::Migration
  def change
    create_table :kidungs do |t|
      t.string  :tipe
      t.integer :number
      t.string  :content

      t.timestamps null: false
    end
  end
end
