class CreateOrganizations < ActiveRecord::Migration def change create_table :organizations do |t| ## General info t.string :name, null: false t.timestamps null: false end add_index :organizations, :name, unique: true end end