NJACKWinterOfCode / E-voting-portal

An internet based electronic voting system
MIT License
1 stars 4 forks source link

Added schema.sql in the migrations directory #8

Closed bksahu closed 6 years ago

bksahu commented 6 years ago

Solves issue #6 and #7

tameeshB commented 6 years ago

Looks good to me!

Last login: Tue Dec 5 07:09:35 on ttys001 tameeshb@MacBook-Pro-3 ~> cd ht tameeshb@MacBook-Pro-3 /L/W/Documents> tameeshb@MacBook-Pro-3 /L/W/Documents> git clone git@github.com:bksahu/E-voting-portal.git ev Cloning into 'ev'... remote: Counting objects: 39, done. remote: Compressing objects: 100% (7/7), done. remote: Total 39 (delta 3), reused 9 (delta 2), pack-reused 29 Receiving objects: 100% (39/39), 81.29 KiB | 0 bytes/s, done. Resolving deltas: 100% (14/14), done. tameeshb@MacBook-Pro-3 /L/W/Documents> cd ev/ tameeshb@MacBook-Pro-3 /L/W/D/ev> ll total 184 drwxr-xr-x 4 tameeshb wheel 136B Dec 5 17:11 CSS -rw-r--r-- 1 tameeshb wheel 1.0K Dec 5 17:11 LICENSE -rw-r--r-- 1 tameeshb wheel 3.7K Dec 5 17:11 README.md -rw-r--r-- 1 tameeshb wheel 2.8K Dec 5 17:11 admin_gym.php -rw-r--r-- 1 tameeshb wheel 32K Dec 5 17:11 admin_hand.php -rw-r--r-- 1 tameeshb wheel 2.3K Dec 5 17:11 contact.php drwxr-xr-x 3 tameeshb wheel 102B Dec 5 17:11 images drwxr-xr-x 8 tameeshb wheel 272B Dec 5 17:11 includes -rw-r--r-- 1 tameeshb wheel 2.0K Dec 5 17:11 index.php -rw-r--r-- 1 tameeshb wheel 1.4K Dec 5 17:11 logout.php -rw-r--r-- 1 tameeshb wheel 3.3K Dec 5 17:11 logs.php drwxr-xr-x 3 tameeshb wheel 102B Dec 5 17:11 migrations -rw-r--r-- 1 tameeshb wheel 8.6K Dec 5 17:11 result.php -rw-r--r-- 1 tameeshb wheel 7.1K Dec 5 17:11 signs.php -rw-r--r-- 1 tameeshb wheel 1.9K Dec 5 17:11 votedone.php -rw-r--r-- 1 tameeshb wheel 4.4K Dec 5 17:11 voting.php tameeshb@MacBook-Pro-3 /L/W/D/ev> php -S localhost:8000 PHP 7.0.19 Development Server started at Tue Dec 5 17:11:51 2017 Listening on http://localhost:8000 Document root is /Library/WebServer/Documents/ev Press Ctrl-C to quit.

ç^C⏎ tameeshb@MacBook-Pro-3 /L/W/D/ev> cd migrations/ tameeshb@MacBook-Pro-3 /L/W/D/e/migrations> ll total 8 -rw-r--r-- 1 tameeshb wheel 3.9K Dec 5 17:11 schema.sql tameeshb@MacBook-Pro-3 /L/W/D/e/migrations> mysql -h localhost -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server version: 5.7.19 Homebrew

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> CREATE DATABASE ev -> ; Query OK, 1 row affected (0.02 sec)

mysql> exit Bye tameeshb@MacBook-Pro-3 /L/W/D/e/migrations> mysql -h localhost -u root -p ev<schema.sql Enter password: tameeshb@MacBook-Pro-3 /L/W/D/e/migrations> mysql -h localhost -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 5.7.19 Homebrew

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use ev Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A

Database changed mysql> show tables; +--------------+ | Tables_in_ev | +--------------+ | candidate | | data | | user | +--------------+ 3 rows in set (0.00 sec)

mysql> exit Bye tameeshb@MacBook-Pro-3 /L/W/D/e/migrations> ll total 8 -rw-r--r-- 1 tameeshb wheel 3.9K Dec 5 17:11 schema.sql tameeshb@MacBook-Pro-3 /L/W/D/e/migrations> cd ../ tameeshb@MacBook-Pro-3 /L/W/D/ev> ll total 184 drwxr-xr-x 4 tameeshb wheel 136B Dec 5 17:11 CSS -rw-r--r-- 1 tameeshb wheel 1.0K Dec 5 17:11 LICENSE -rw-r--r-- 1 tameeshb wheel 3.7K Dec 5 17:11 README.md -rw-r--r-- 1 tameeshb wheel 2.8K Dec 5 17:11 admin_gym.php -rw-r--r-- 1 tameeshb wheel 32K Dec 5 17:11 admin_hand.php -rw-r--r-- 1 tameeshb wheel 2.3K Dec 5 17:11 contact.php drwxr-xr-x 3 tameeshb wheel 102B Dec 5 17:11 images drwxr-xr-x 8 tameeshb wheel 272B Dec 5 17:11 includes -rw-r--r-- 1 tameeshb wheel 2.0K Dec 5 17:11 index.php -rw-r--r-- 1 tameeshb wheel 1.4K Dec 5 17:11 logout.php -rw-r--r-- 1 tameeshb wheel 3.3K Dec 5 17:11 logs.php drwxr-xr-x 3 tameeshb wheel 102B Dec 5 17:11 migrations -rw-r--r-- 1 tameeshb wheel 8.6K Dec 5 17:11 result.php -rw-r--r-- 1 tameeshb wheel 7.1K Dec 5 17:11 signs.php -rw-r--r-- 1 tameeshb wheel 1.9K Dec 5 17:11 votedone.php -rw-r--r-- 1 tameeshb wheel 4.4K Dec 5 17:11 voting.php tameeshb@MacBook-Pro-3 /L/W/D/ev> ll includes/ total 56 -rw-r--r-- 1 tameeshb wheel 1.3K Dec 5 17:11 connection.php -rw-r--r-- 1 tameeshb wheel 1.2K Dec 5 17:11 constants.php -rw-r--r-- 1 tameeshb wheel 1.3K Dec 5 17:11 footer.php -rw-r--r-- 1 tameeshb wheel 7.2K Dec 5 17:11 functions.php -rw-r--r-- 1 tameeshb wheel 3.4K Dec 5 17:11 header.php -rw-r--r-- 1 tameeshb wheel 1.1K Dec 5 17:11 session.php tameeshb@MacBook-Pro-3 /L/W/D/ev> cd includes/ tameeshb@MacBook-Pro-3 /L/W/D/e/includes> subl . tameeshb@MacBook-Pro-3 /L/W/D/e/includes> php -S localhost:8000 PHP 7.0.19 Development Server started at Tue Dec 5 17:15:23 2017 Listening on http://localhost:8000 Document root is /Library/WebServer/Documents/ev/includes Press Ctrl-C to quit. [Tue Dec 5 17:15:24 2017] ::1:64563 [404]: / - No such file or directory [Tue Dec 5 17:15:24 2017] ::1:64564 [404]: /favicon.ico - No such file or directory ^C⏎ tameeshb@MacBook-Pro-3 /L/W/D/e/includes> cd ../ tameeshb@MacBook-Pro-3 /L/W/D/ev> php -S localhost:8000 PHP 7.0.19 Development Server started at Tue Dec 5 17:15:36 2017 Listening on http://localhost:8000 Document root is /Library/WebServer/Documents/ev Press Ctrl-C to quit.

tameeshb@MacBook-Pro-3 /L/W/D/ev>

opticod commented 6 years ago

Good Job @bksahu :tada: ! I was out of station last week, so couldn't reply here. Thanks @tameeshB for taking care of this.

bksahu commented 6 years ago

Thanks @opticod and @tameeshB for being so helpful 😄