Sha256: 697f07c1924e720bed5725bd9e0f694eea2b85fdbe9f298c82483d936d800f0b
Contents?: true
Size: 519 Bytes
Versions: 65
Compression:
Stored size: 519 Bytes
Contents
# == Schema Information # # Table name: todo_items # # id :integer not null, primary key # position :integer # task :string # created_at :datetime not null # updated_at :datetime not null # todo_list_id :integer not null # # Indexes # # index_todo_items_on_todo_list_id (todo_list_id) # # Foreign Keys # # todo_list_id (todo_list_id => todo_lists.id) # class TodoItem < ApplicationRecord belongs_to :todo_list acts_as_list scope: :todo_list end
Version data entries
65 entries across 65 versions & 1 rubygems