You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

thread.rb 93B

1234567
  1. require 'sequel'
  2. module VLV
  3. class Thread < Sequel::Model
  4. one_to_many :posts
  5. end
  6. end