This is ok, but it only covers connections to router. To make it work also for forwarded ports, move it from input to prerouting:
/ip firewall mangle
add action=mark-connection chain=input in-interface=ether1 new-connection-mark=WAN1_conn
add action=mark-connection chain=input in-interface=ether2 new-connection-mark=WAN2_conn
These two need additional connection-mark=no-mark, otherwise they happily overwrite your previously set marks:
/ip firewall mangle
add action=mark-connection chain=prerouting dst-address-type=!local in-interface=bridge1 new-connection-mark=WAN1_conn passthrough=yes per-connection-classifier=both-addresses-and-ports:2/0
add action=mark-connection chain=prerouting dst-address-type=!local in-interface=bridge1 new-connection-mark=WAN2_conn passthrough=yes per-connection-classifier=both-addresses-and-ports:2/1
These are nonsense, you’re not running sql server on router itself:
/ip firewall filter
add action=accept chain=input comment="SQL SERVER PORT 1433" dst-address=10.0.1.249 dst-port=1433 in-interface=ether1 protocol=tcp
add action=accept chain=input connection-nat-state=dstnat port=1433 protocol=tcp
Since your default action for forward is allow, you don’t need to add anything there to make it work. But it’s not good config, you should do at least what RouterOS default config does:
/ip firewall filter
add action=drop chain=forward connection-nat-state=!dstnat connection-state=new in-interface=ether1
add action=drop chain=forward connection-nat-state=!dstnat connection-state=new in-interface=ether2
That would be after accepting established & related connections, which should be very first rule, because vast majority of packets will match that:
/ip firewall filter
add action=accept chain=forward connection-state=established,related
Bonus: You want to add in-interface=bridge1 to these (allow DNS only from LAN), because as they are now, they make you open resolver:
/ip firewall filter
add action=accept chain=input comment="Accept DNS - UDP" port=53 protocol=udp
add action=accept chain=input comment="Accept DNS - TCP" port=53 protocol=tcp