Sha256: fa70e685136b118a7cb87a4fd77315afc1c14e6b97279a01f944ac083fafd2d1
Contents?: true
Size: 559 Bytes
Versions: 16
Compression:
Stored size: 559 Bytes
Contents
Sequel.migration do up do create_table :comments do primary_key :id Integer :user_id String :name String :website String :email String :comment, :text => true String :defensio_signature String :status, :default => 'closed' Time :created_at Time :updated_at foreign_key :section_entry_id, :section_entries, :on_delete => :cascade, :on_update => :cascade, :key => :id end end down do drop_table :comments end end
Version data entries
16 entries across 16 versions & 1 rubygems