This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Name: Doctrine Update Bash Script | |
| # Description: Updates the MySQL database automatically with one script with doctrine! | |
| echo "Creating the update.sql file.....\n" | |
| ./vendor/bin/doctrine-module orm:schema-tool:update --dump-sql >> ./scripts/db/update.sql | |
| #Checking if the file exists |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.util.*; | |
| import java.text.*; | |
| import java.math.*; | |
| import java.util.regex.*; | |
| public class Solution { | |
| public static void main(String[] args) { | |
| Scanner in = new Scanner(System.in); |
OlderNewer