Sprankelprachtig aan/afmeldsysteem

20161207204102_create_groups.rb 175B

1234567891011
  1. class CreateGroups < ActiveRecord::Migration[5.0]
  2. def change
  3. create_table :groups do |t|
  4. t.string :name
  5. t.string :type
  6. t.timestamps
  7. end
  8. end
  9. end