Sha256: 25a39c25411772862ebf8d7932912643730ff87eb9fbb5af09a9a7d26a4f4ddf
Contents?: true
Size: 657 Bytes
Versions: 8
Compression:
Stored size: 657 Bytes
Contents
create_table :clubs, :force => true do |t| t.string :name end create_table :sponsors, :force => true do |t| t.integer :club_id t.integer :sponsorable_id t.string :sponsorable_type end create_table :men, :force => true do |t| t.string :name end create_table :faces, :force => true do |t| t.string :description t.integer :man_id t.integer :polymorphic_man_id t.string :polymorphic_man_type end create_table :interests, :force => true do |t| t.string :topic t.integer :man_id t.integer :polymorphic_man_id t.string :polymorphic_man_type t.integer :zine_id end create_table :zines, :force => true do |t| t.string :title end
Version data entries
8 entries across 8 versions & 2 rubygems