Sha256: 9a4387257f399e6c4334b6a64ce45115662fe4cd4e6af7333c751d8046690024
Contents?: true
Size: 297 Bytes
Versions: 10
Compression:
Stored size: 297 Bytes
Contents
class AddComments < Sequel::Migration def up create_table :comments do primary_key :id foreign_key :entry_id, :table => :entries string :name string :email text :content timestamp :updated_on end end def down drop_table :comments end end
Version data entries
10 entries across 10 versions & 4 rubygems