Adding migrations for seeding rooms and restrictions
This commit is contained in:
		@ -0,0 +1 @@
 | 
			
		||||
delete from rooms
 | 
			
		||||
@ -0,0 +1,3 @@
 | 
			
		||||
INSERT INTO public.rooms(room_name, created_at, updated_at) VALUES
 | 
			
		||||
    ("General's Quarters","2024-07-08 00:00:00","2024-07-08 00:00:00"),
 | 
			
		||||
    ("Major's Suite","2024-07-08 00:00:00","2024-07-08 00:00:00");
 | 
			
		||||
@ -0,0 +1 @@
 | 
			
		||||
delete from restrictions;
 | 
			
		||||
@ -0,0 +1,4 @@
 | 
			
		||||
INSERT INTO public.restrictions(restriction_name, created_at, updated_at) VALUES
 | 
			
		||||
    ("Reservation","2024-07-08 00:00:00","2024-07-08 00:00:00"),
 | 
			
		||||
    ("Owner block","2024-07-08 00:00:00","2024-07-08 00:00:00");
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user