Sha256: f9609630160d5745a69167a45c99b54c60cb5d4a96f3c40fae75751b46f1ae3f
Contents?: true
Size: 517 Bytes
Versions: 20
Compression:
Stored size: 517 Bytes
Contents
class CreateLibraryGroups < ActiveRecord::Migration def change create_table :library_groups do |t| t.string :name, :null => false t.text :display_name t.string :short_name, :null => false t.string :email t.text :my_networks t.text :login_banner t.text :note t.integer :valid_period_for_new_user, :default => 365, :null => false t.integer :country_id t.integer :position t.timestamps end add_index :library_groups, :short_name end end
Version data entries
20 entries across 20 versions & 2 rubygems