Sha256: 4ea603b4593167736d2e1eeb5b7ddacb70c18bc2e3dbc530f72779dccc13dbbf
Contents?: true
Size: 708 Bytes
Versions: 2
Compression:
Stored size: 708 Bytes
Contents
model_name: Theaters, Members, and Movies query: from: theaters fields: - key_path: id - key_path: name sorters: - key_path: created_at sqlite_readable: |+ SELECT "theaters"."id" AS 'id', "theaters"."name" AS 'name' FROM "theaters" "theaters" ORDER BY "theaters"."created_at" sqlite_not_readable: |+ SELECT "t0"."id" AS 'c0', "t0"."name" AS 'c1' FROM "theaters" "t0" ORDER BY "t0"."created_at" mysql_readable: |+ SELECT `theaters`.`id` AS 'id', `theaters`.`name` AS 'name' FROM `theaters` `theaters` ORDER BY `theaters`.`created_at` mysql_not_readable: |+ SELECT `t0`.`id` AS 'c0', `t0`.`name` AS 'c1' FROM `theaters` `t0` ORDER BY `t0`.`created_at`
Version data entries
2 entries across 2 versions & 1 rubygems