class Movie < ActiveRecord::Base
  has_many :movie_showtimes
end

class Theatre < ActiveRecord::Base
  has_many :movie_showtimes
end

class MovieShowtime < ActiveRecord::Base
  belongs_to :movie
  belongs_to :theatre
end


