2026-05-25 16:15:06 +00:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: stores
|
|
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# latitude :float
|
|
|
|
|
# longitude :float
|
|
|
|
|
# name :string
|
|
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
# chain_id :integer not null
|
|
|
|
|
#
|
|
|
|
|
# Indexes
|
|
|
|
|
#
|
|
|
|
|
# index_stores_on_chain_id (chain_id)
|
|
|
|
|
#
|
|
|
|
|
# Foreign Keys
|
|
|
|
|
#
|
|
|
|
|
# fk_rails_... (chain_id => chains.id)
|
|
|
|
|
#
|
2026-05-17 11:12:43 +00:00
|
|
|
require "test_helper"
|
|
|
|
|
|
|
|
|
|
class StoreTest < ActiveSupport::TestCase
|
|
|
|
|
# test "the truth" do
|
|
|
|
|
# assert true
|
|
|
|
|
# end
|
|
|
|
|
end
|