8 lines
189 B
SQL
8 lines
189 B
SQL
-- Insert a new row into rooms table
|
|
INSERT INTO rooms (id, name, room_type_id, s3_suffix)
|
|
VALUES (
|
|
342,
|
|
'room113_wallpaper_standing',
|
|
2,
|
|
'standing/wallpaper/room113.jpg');
|