class CreateKreators

Public Instance Methods

change() click to toggle source
# File lib/generators/project/db/migrate/1_create_kreators.rb, line 2
def change
  create_table :kreators do |t|
    t.string :name, null: true, limit: 64

    t.timestamps
  end
end